if (bundleContext == null) {
return new Status(IStatus.ERROR, ScalaJDTWeavingPlugin.ID, "Cannot get bundleContext", new Exception());
}
try {
BundleInfo[] infos = manipulator.loadConfiguration(bundleContext, null);
BundleInfo weavingInfo = null;
for (BundleInfo info : infos) {
if (info.getSymbolicName().equals("org.eclipse.equinox.weaving.aspectj")) {
weavingInfo = info;
break;