Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-02-13 15:32:50 +0000
committerThomas Watson2014-02-13 15:32:50 +0000
commita8948dd432ef974d311af99e295dc1a627d20959 (patch)
tree21e482f4daaec105f6938e09a24d2eae7f2cdfdf
parent6725bbf1eb86bc53cd34e721bd82150fc207cf59 (diff)
downloadrt.equinox.framework-a8948dd432ef974d311af99e295dc1a627d20959.tar.gz
rt.equinox.framework-a8948dd432ef974d311af99e295dc1a627d20959.tar.xz
rt.equinox.framework-a8948dd432ef974d311af99e295dc1a627d20959.zip
bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/SystemBundleActivator.java
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/SystemBundleActivator.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/SystemBundleActivator.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/SystemBundleActivator.java
index 1d65a6ec2..fb305fe4c 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/SystemBundleActivator.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/SystemBundleActivator.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2003, 2013 IBM Corporation and others.
+ * Copyright (c) 2003, 2014 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -11,12 +11,11 @@
package org.eclipse.osgi.internal.framework;
-import org.apache.felix.resolver.Logger;
-
-import org.apache.felix.resolver.ResolverImpl;
import java.util.*;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.SAXParserFactory;
+import org.apache.felix.resolver.Logger;
+import org.apache.felix.resolver.ResolverImpl;
import org.eclipse.osgi.internal.debug.Debug;
import org.eclipse.osgi.internal.debug.FrameworkDebugOptions;
import org.eclipse.osgi.internal.location.EquinoxLocations;
@@ -76,7 +75,7 @@ public class SystemBundleActivator implements BundleActivator {
register(bc, PermissionAdmin.class, sa, null);
register(bc, ConditionalPermissionAdmin.class, sa, null);
- register(bc, Resolver.class, new ResolverImpl(new Logger(0)), null);
+ register(bc, Resolver.class, new ResolverImpl(new Logger(0)), false, null);
register(bc, DebugOptions.class, dbgOptions, null);

Back to the top