Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2012-05-24 19:42:56 +0000
committerPascal Rapicault2012-05-24 19:45:19 +0000
commitc5ee247b977b4721d80dffb1be1a33778f478944 (patch)
tree343cb481088b0a49e1a70221d2ee75b01ff7cb16
parent7dc1d927610c39c2f7542fca85c08794a138ef14 (diff)
downloadrt.equinox.p2-I20120524-2100.tar.gz
rt.equinox.p2-I20120524-2100.tar.xz
rt.equinox.p2-I20120524-2100.zip
restarted
-rw-r--r--bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Activator.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Activator.java b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Activator.java
index 196f09f41..e2129295c 100644
--- a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Activator.java
+++ b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Activator.java
@@ -29,6 +29,9 @@ public class Activator implements BundleActivator {
public void start(BundleContext aContext) throws Exception {
Activator.context = aContext;
+
+ //Force the startup of the registry bundle to make sure that the preference scope is registered
+ Class.forName("org.eclipse.core.runtime.IExtensionRegistry"); //$NON-NLS-1$
}
public void stop(BundleContext aContext) throws Exception {

Back to the top