diff options
-rw-r--r-- | weaver/src/org/aspectj/weaver/ltw/LTWWorld.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java b/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java index 901c9e4ba..2a9db1024 100644 --- a/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java +++ b/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java @@ -105,7 +105,7 @@ public class LTWWorld extends BcelWorld implements IReflectionWorld { if (fc=='j' || fc=='c' || fc=='o' || fc=='s') { // cheaper than imminent string startsWith tests if (name.startsWith("java") || name.startsWith("com.sun.") || name.startsWith("org.w3c") || name.startsWith("sun.") || name.startsWith("org.omg")) { - ReferenceTypeDelegate bootstrapLoaderDelegate = resolveReflectionTypeDelegate(ty, loader); + ReferenceTypeDelegate bootstrapLoaderDelegate = resolveReflectionTypeDelegate(ty, null); if (bootstrapLoaderDelegate != null) { // it's always fine to load these bytes: there's no weaving into them // and since the class isn't initialized, all we are doing at this point is loading the bytes |