Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2010-02-26 11:41:54 +0000
committerTomasz Zarna2010-02-26 11:41:54 +0000
commitac76ed72d04dd8072c375c60907ee1990557ae7f (patch)
treed7403efb31e1933ddca0b58b7f2db8c03bb4dcad /bundles/org.eclipse.team.ui/src/org/eclipse/team
parentbda221fc73e21c36ee40fabac65a610db902ba3f (diff)
downloadeclipse.platform.team-ac76ed72d04dd8072c375c60907ee1990557ae7f.tar.gz
eclipse.platform.team-ac76ed72d04dd8072c375c60907ee1990557ae7f.tar.xz
eclipse.platform.team-ac76ed72d04dd8072c375c60907ee1990557ae7f.zip
Restore a method used in a product.
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/Utils.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/Utils.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/Utils.java
index 35ddadc80..611acb1b3 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/Utils.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/Utils.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -384,6 +384,16 @@ public class Utils {
}
}
+ /**
+ * DO NOT REMOVE, used in a product.
+ *
+ * @deprecated As of 3.5, replaced by
+ * {@link #updateLabels(SyncInfo, CompareConfiguration, IProgressMonitor)}
+ */
+ public static void updateLabels(SyncInfo sync, CompareConfiguration config) {
+ updateLabels(sync, config, null);
+ }
+
private static boolean isShowAuthor() {
IPreferenceStore store = TeamUIPlugin.getPlugin().getPreferenceStore();
return store.getBoolean(IPreferenceIds.SHOW_AUTHOR_IN_COMPARE_EDITOR);

Back to the top