Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2006-07-12 21:35:32 +0000
committerDJ Houghton2006-07-12 21:35:32 +0000
commit2f6a9f57ab5cfcaa227bb88dc491264f5c8e09e0 (patch)
tree9e5c1aa180cb8ae5212bbecaec40dab292dce180 /bundles/org.eclipse.equinox.preferences
parenta54c3b93c3056ebef16ffedefe690e2cbf7675c5 (diff)
downloadrt.equinox.bundles-2f6a9f57ab5cfcaa227bb88dc491264f5c8e09e0.tar.gz
rt.equinox.bundles-2f6a9f57ab5cfcaa227bb88dc491264f5c8e09e0.tar.xz
rt.equinox.bundles-2f6a9f57ab5cfcaa227bb88dc491264f5c8e09e0.zip
Bug 150288 - [prefs] Should avoid messages printed to the console
Diffstat (limited to 'bundles/org.eclipse.equinox.preferences')
-rw-r--r--bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/Activator.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/Activator.java b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/Activator.java
index dcce07642..832817cf4 100644
--- a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/Activator.java
+++ b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/Activator.java
@@ -59,6 +59,7 @@ public class Activator implements BundleActivator, ServiceTrackerCustomizer {
*/
public void start(BundleContext context) throws Exception {
bundleContext = context;
+ // Open the services first before processing the command-line args, order is important! (Bug 150288)
PreferencesOSGiUtils.getDefault().openServices();
processCommandLine();

Back to the top