Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-06-28 17:40:34 +0000
committerThomas Watson2013-06-28 17:40:34 +0000
commit6f7ffa68e71b6317f106bfe2e81965a5977b6b94 (patch)
treee2b772ab79a725ccdffd832eecb05aa6ddbc0abc /bundles/org.eclipse.osgi
parent16ffc7e24c86df61262d07dcdb9c6b3575f2178b (diff)
downloadrt.equinox.framework-6f7ffa68e71b6317f106bfe2e81965a5977b6b94.tar.gz
rt.equinox.framework-6f7ffa68e71b6317f106bfe2e81965a5977b6b94.tar.xz
rt.equinox.framework-6f7ffa68e71b6317f106bfe2e81965a5977b6b94.zip
Bug 411910 - EcipseStarter.getProperty methods should both use the getConfiguration method.
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 9cb7366e0..c32c72ee4 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
@@ -145,7 +145,7 @@ public class EclipseStarter {
private synchronized static String getProperty(String key) {
if (equinoxConfig != null) {
- return equinoxConfig.getProperty(key);
+ return equinoxConfig.getConfiguration(key);
}
return getConfiguration().get(key);
}

Back to the top