From: aclement Date: Mon, 2 Nov 2009 23:12:46 +0000 (+0000) Subject: pass world X-Git-Tag: V1_6_7~145 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=25220a4fceddb84895cdee5f8705634edbc93391;p=aspectj.git pass world --- diff --git a/org.aspectj.matcher/src/org/aspectj/weaver/reflect/ReflectionFastMatchInfo.java b/org.aspectj.matcher/src/org/aspectj/weaver/reflect/ReflectionFastMatchInfo.java index 892fdabc5..eb891c3bf 100644 --- a/org.aspectj.matcher/src/org/aspectj/weaver/reflect/ReflectionFastMatchInfo.java +++ b/org.aspectj.matcher/src/org/aspectj/weaver/reflect/ReflectionFastMatchInfo.java @@ -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; } /**