Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2004-04-19 14:34:34 +0000
committerJean Michel-Lemieux2004-04-19 14:34:34 +0000
commit323bbeb8d63efa5bb254660fb7f911a1630d2b66 (patch)
treea80fadee7759c89ffd202ff40e5617444958bb0c
parent29cb0896b07d3df12e999da93c5009a46b02c7a8 (diff)
downloadeclipse.platform.team-323bbeb8d63efa5bb254660fb7f911a1630d2b66.tar.gz
eclipse.platform.team-323bbeb8d63efa5bb254660fb7f911a1630d2b66.tar.xz
eclipse.platform.team-323bbeb8d63efa5bb254660fb7f911a1630d2b66.zip
Open dialog in all cases.
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshUserNotificationPolicyInModalDialog.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshUserNotificationPolicyInModalDialog.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshUserNotificationPolicyInModalDialog.java
index b21b34bd5..d085902cf 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshUserNotificationPolicyInModalDialog.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/RefreshUserNotificationPolicyInModalDialog.java
@@ -61,11 +61,11 @@ public class RefreshUserNotificationPolicyInModalDialog implements IRefreshSubsc
MessageDialog.openInformation(shell, Policy.bind("OpenComparedDialog.noChangeTitle"), Policy.bind("OpenComparedDialog.noChangesMessage")); //$NON-NLS-1$ //$NON-NLS-2$
return;
}
- if (isSingleFileCompare(event.getResources())) {
- compareAndOpenEditors(event, participant);
- } else {
+ //if (isSingleFileCompare(event.getResources())) {
+ // compareAndOpenEditors(event, participant);
+ //} else {
compareAndOpenDialog(event, participant);
- }
+ //}
} finally {
if (TeamUI.getSynchronizeManager().get(participant.getId(), participant.getSecondaryId()) == null) {
participant.dispose();

Back to the top