Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/adaptors/AspectJAdaptorFactory.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/adaptors/AspectJAdaptorFactory.java b/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/adaptors/AspectJAdaptorFactory.java
index 1acd272fe..3218d02f7 100644
--- a/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/adaptors/AspectJAdaptorFactory.java
+++ b/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/adaptors/AspectJAdaptorFactory.java
@@ -43,10 +43,11 @@ public class AspectJAdaptorFactory {
private static final Collection IGNORE_WEAVING_SERVICE_BUNDLES = Arrays
.asList(new String[] { "org.eclipse.equinox.weaving.aspectj",
- "org.eclipse.equinox.caching",
- "org.eclipse.equinox.caching.j9",
+ "org.eclipse.equinox.weaving.caching",
+ "org.eclipse.equinox.weaving.caching.j9",
"org.eclipse.update.configurator",
- "org.eclipse.equinox.simpleconfigurator" });
+ "org.eclipse.equinox.simpleconfigurator",
+ "org.eclipse.equinox.common" });
private BundleContext bundleContext;

Back to the top