Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-06-10 20:07:57 +0000
committerMichael Valenta2004-06-10 20:07:57 +0000
commite443b9e189bbfa08981e25179d9e6ab41eb944d7 (patch)
tree11350f06a3132b7634694712e574baaf26ed9670
parent525d3f5364cc5cdd23719c0dbafac7be4fc92c1b (diff)
downloadeclipse.platform.team-e443b9e189bbfa08981e25179d9e6ab41eb944d7.tar.gz
eclipse.platform.team-e443b9e189bbfa08981e25179d9e6ab41eb944d7.tar.xz
eclipse.platform.team-e443b9e189bbfa08981e25179d9e6ab41eb944d7.zip
Bug 65793 Marker propogation results in delay switching modes
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/TreeViewerAdvisor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/TreeViewerAdvisor.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/TreeViewerAdvisor.java
index 11261403d..bb88e3d94 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/TreeViewerAdvisor.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/TreeViewerAdvisor.java
@@ -244,7 +244,7 @@ public class TreeViewerAdvisor extends StructuredViewerAdvisor {
});
}
- private void updateStatusLine(IStructuredSelection selection) {
+ /* private */ void updateStatusLine(IStructuredSelection selection) {
IWorkbenchSite ws = getConfiguration().getSite().getWorkbenchSite();
if (ws != null && ws instanceof IViewSite) {
String msg = getStatusLineMessage(selection);

Back to the top