Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshCompleteDialog.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshCompleteDialog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshCompleteDialog.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshCompleteDialog.java
index fa69c87fa..52161d784 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshCompleteDialog.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshCompleteDialog.java
@@ -34,7 +34,7 @@ public class RefreshCompleteDialog extends DetailsDialog {
private Button promptWhenNoChanges;
private Button promptWithChanges;
private SyncInfoSetCompareInput compareEditorInput;
- private SyncInfoSetCollector set;
+ private FilteredSyncInfoCollector set;
private IRefreshEvent event;
private final static int RESOURCE_LIST_SIZE = 10;
private IDialogSettings settings;
@@ -50,7 +50,7 @@ public class RefreshCompleteDialog extends DetailsDialog {
this.event = event;
setImageKey(DLG_IMG_INFO);
- this.set = new SyncInfoSetCollector(participant.getSyncInfoCollector().getSyncInfoSet(), getResources(), null);
+ this.set = new FilteredSyncInfoCollector(participant.getTeamSubscriberSyncInfoCollector().getSyncInfoSet(), getResources(), null);
this.compareEditorInput = new SyncInfoSetCompareInput(new CompareConfiguration(),
new SyncInfoSetCompareConfiguration(participant.getId(), set.getSyncInfoSet()));

Back to the top