Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Lippert2009-03-25 22:29:47 +0000
committerMartin Lippert2009-03-25 22:29:47 +0000
commitae29dc4eab69d83b0c79b9ea11f84b2cc528b6c2 (patch)
treeb1acbba80ea9a8e5a4077c290f3b1b4c2e53b39e /bundles/org.eclipse.equinox.weaving.hook
parent3f1d0c59d99d13251a3b12634c1d1d1e45591b82 (diff)
downloadrt.equinox.bundles-ae29dc4eab69d83b0c79b9ea11f84b2cc528b6c2.tar.gz
rt.equinox.bundles-ae29dc4eab69d83b0c79b9ea11f84b2cc528b6c2.tar.xz
rt.equinox.bundles-ae29dc4eab69d83b0c79b9ea11f84b2cc528b6c2.zip
Bug 270010 - [aspects] Small changes to Equinox Aspects
Diffstat (limited to 'bundles/org.eclipse.equinox.weaving.hook')
-rw-r--r--bundles/org.eclipse.equinox.weaving.hook/build.properties3
-rw-r--r--bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/hooks/SupplementerRegistry.java9
2 files changed, 7 insertions, 5 deletions
diff --git a/bundles/org.eclipse.equinox.weaving.hook/build.properties b/bundles/org.eclipse.equinox.weaving.hook/build.properties
index a42e7f7fc..61a3c8a61 100644
--- a/bundles/org.eclipse.equinox.weaving.hook/build.properties
+++ b/bundles/org.eclipse.equinox.weaving.hook/build.properties
@@ -3,4 +3,5 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
hookconfigurators.properties,\
- .options
+ .options,\
+ fragment.xml
diff --git a/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/hooks/SupplementerRegistry.java b/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/hooks/SupplementerRegistry.java
index c5419bc8c..0fb3ff4a4 100644
--- a/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/hooks/SupplementerRegistry.java
+++ b/bundles/org.eclipse.equinox.weaving.hook/src/org/eclipse/equinox/weaving/hooks/SupplementerRegistry.java
@@ -387,11 +387,12 @@ public class SupplementerRegistry implements ISupplementerRegistry {
final Bundle[] bundles = bundlesToRefresh
.toArray(new Bundle[bundlesToRefresh.size()]);
- for (int i = 0; i < bundles.length; i++) {
- System.out.println("refresh bundle: "
- + bundles[i].getSymbolicName());
+ if (AbstractAspectJHook.verbose) {
+ for (int i = 0; i < bundles.length; i++) {
+ System.out.println("refresh bundle: "
+ + bundles[i].getSymbolicName());
+ }
}
-
refreshBundles(bundles);
}
}

Back to the top