]> source.dussan.org Git - aspectj.git/commitdiff
pass world
authoraclement <aclement>
Mon, 2 Nov 2009 23:12:46 +0000 (23:12 +0000)
committeraclement <aclement>
Mon, 2 Nov 2009 23:12:46 +0000 (23:12 +0000)
org.aspectj.matcher/src/org/aspectj/weaver/reflect/ReflectionFastMatchInfo.java

index 892fdabc5fd08d46390ebf70410ada71d6592df8..eb891c3bf3c63d065cfccc42952dd24ddfb8a91c 100644 (file)
@@ -13,12 +13,12 @@ package org.aspectj.weaver.reflect;
 
 import org.aspectj.weaver.ResolvedType;
 import org.aspectj.weaver.Shadow;
+import org.aspectj.weaver.World;
 import org.aspectj.weaver.patterns.FastMatchInfo;
 import org.aspectj.weaver.tools.MatchingContext;
 
 /**
- * An implementation of FastMatchInfo that can also expose a 
- * MatchingContext.
+ * An implementation of FastMatchInfo that can also expose a MatchingContext.
  * 
  * @author Adrian Colyer
  * @since 1.5.1
@@ -27,9 +27,9 @@ public class ReflectionFastMatchInfo extends FastMatchInfo {
 
        private final MatchingContext context;
 
-       public ReflectionFastMatchInfo(ResolvedType type, Shadow.Kind kind, MatchingContext context) {
-               super(type,kind);
-               this.context = context;         
+       public ReflectionFastMatchInfo(ResolvedType type, Shadow.Kind kind, MatchingContext context, World world) {
+               super(type, kind, world);
+               this.context = context;
        }
 
        /**