Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Jury2012-12-07 00:18:49 +0000
committerAndy Jury2012-12-07 00:18:49 +0000
commitff632cf38d1bd61e0d66d3d9defdcb8c68f402ee (patch)
treef403f2589a2f768c7c70873e389d2c2268db4103
parent881f36daf6e30259df85234efb7355a44ce5d48c (diff)
downloadorg.eclipse.osee-ff632cf38d1bd61e0d66d3d9defdcb8c68f402ee.tar.gz
org.eclipse.osee-ff632cf38d1bd61e0d66d3d9defdcb8c68f402ee.tar.xz
org.eclipse.osee-ff632cf38d1bd61e0d66d3d9defdcb8c68f402ee.zip
feature: Do not start fragment bundles.0.10.4.v201212121837_RC
-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