Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2012-11-09 21:50:47 +0000
committerThomas Watson2012-11-09 21:50:47 +0000
commite18a9fc68b7de4b9b4759084fa288ce414585a6c (patch)
treedd4952bc5e8da3f6fe579faf4c865623bbae534a /bundles/org.eclipse.osgi/container/src/org/eclipse/core
parentf5d34c604e6ec5b185faafa4d1b12b92b251d942 (diff)
downloadrt.equinox.framework-e18a9fc68b7de4b9b4759084fa288ce414585a6c.tar.gz
rt.equinox.framework-e18a9fc68b7de4b9b4759084fa288ce414585a6c.tar.xz
rt.equinox.framework-e18a9fc68b7de4b9b4759084fa288ce414585a6c.zip
Fix to make compatibility delegation default to false for osgi launcher
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/core')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java2
1 files changed, 2 insertions, 0 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 f66a38285..461392c5c 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
@@ -1255,6 +1255,8 @@ public class EclipseStarter {
// if check config is unknown and we are in dev mode,
if (getProperty(PROP_DEV) != null && getProperty(PROP_CHECK_CONFIG) == null)
setProperty(PROP_CHECK_CONFIG, "true"); //$NON-NLS-1$
+ if (getProperty(EquinoxConfiguration.PROP_COMPATIBILITY_BOOTDELEGATION) == null)
+ setProperty(EquinoxConfiguration.PROP_COMPATIBILITY_BOOTDELEGATION, "true"); //$NON-NLS-1$
}
private static class InitialBundle {

Back to the top