Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/AbstractRuntimeManager.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/AbstractRuntimeManager.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/AbstractRuntimeManager.java
index f0c4cf0b7cf..03e9c106185 100644
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/AbstractRuntimeManager.java
+++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/AbstractRuntimeManager.java
@@ -29,10 +29,8 @@ import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
-
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;
-
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.Platform;
import org.eclipse.osee.framework.jdk.core.util.ChecksumUtil;
@@ -399,11 +397,10 @@ public class AbstractRuntimeManager implements IRuntimeLibraryManager {
Bundle bundle = iter.next();
try {
- bundle.getHeaders().get(OTE_ACTIVATION_POLICY);
- // if ("early".equalsIgnoreCase(oteActivationPolicy)) {
- // bundle.start();
- // }
- bundle.start();
+ String entry = bundle.getHeaders().get("Fragment-Host");
+ if(entry == null){
+ bundle.start();
+ }
// We got here because bundle.start did not exception
runningBundles.add(bundle);

Back to the top