Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-09-02 17:54:26 +0000
committerThomas Watson2014-09-02 18:03:33 +0000
commit6788b3735c94945b7d67cf54fa1113dc945e16e7 (patch)
tree38838ceae451a76a8ccb68d82c8c2f27a947053c
parenta1e29deb8ee99337f10b888db19febceb907d745 (diff)
downloadrt.equinox.framework-6788b3735c94945b7d67cf54fa1113dc945e16e7.tar.gz
rt.equinox.framework-6788b3735c94945b7d67cf54fa1113dc945e16e7.tar.xz
rt.equinox.framework-6788b3735c94945b7d67cf54fa1113dc945e16e7.zip
Bug 441377 - ensure getConfiguration() is called at least once
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java
index 4d6115e8b..f63d2c961 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java
@@ -296,7 +296,7 @@ public class EclipseStarter {
if (running)
throw new IllegalStateException(Msg.ECLIPSE_STARTUP_ALREADY_RUNNING);
processCommandLine(args);
- framework = new Equinox(configuration);
+ framework = new Equinox(getConfiguration());
framework.init();
context = framework.getBundleContext();
ServiceReference<FrameworkLog> logRef = context.getServiceReference(FrameworkLog.class);

Back to the top