Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/service/weaving/SupplementerRegistry.java')
-rw-r--r--bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/service/weaving/SupplementerRegistry.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/service/weaving/SupplementerRegistry.java b/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/service/weaving/SupplementerRegistry.java
index cd21e49e4..213da49ac 100644
--- a/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/service/weaving/SupplementerRegistry.java
+++ b/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/service/weaving/SupplementerRegistry.java
@@ -252,17 +252,7 @@ public class SupplementerRegistry {
+ bundle.getSymbolicName());
try {
- final int initialstate = (bundle.getState() & (Bundle.ACTIVE | Bundle.STARTING));
- // TODO Why stop? Shouldn't start again?
- boolean wasStopped = false;
- if (initialstate != 0
- && packageAdmin != null
- && packageAdmin.getBundleType(bundle) != PackageAdmin.BUNDLE_TYPE_FRAGMENT) {
- wasStopped = true;
- bundle.stop(Bundle.STOP_TRANSIENT);
- }
bundle.update();
- if (wasStopped) bundle.start(Bundle.START_TRANSIENT);
} catch (final BundleException e) {
e.printStackTrace();
}

Back to the top