Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-09-02 17:54:26 +0000
committerThomas Watson2014-09-02 17:54:26 +0000
commit4cc6f91af2073107d2e5e0d6647a77c9e9ccf575 (patch)
tree11e0ebf7f437bbc7e9f4f9f076103fba480f2732 /bundles/org.eclipse.osgi
parentf7b67237bf57e0558b0fe0f45b3d5aae5b95b871 (diff)
downloadrt.equinox.framework-4cc6f91af2073107d2e5e0d6647a77c9e9ccf575.tar.gz
rt.equinox.framework-4cc6f91af2073107d2e5e0d6647a77c9e9ccf575.tar.xz
rt.equinox.framework-4cc6f91af2073107d2e5e0d6647a77c9e9ccf575.zip
Bug 441377 - ensure getConfiguration() is called at least once
Diffstat (limited to 'bundles/org.eclipse.osgi')
-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