From 25220a4fceddb84895cdee5f8705634edbc93391 Mon Sep 17 00:00:00 2001 From: aclement Date: Mon, 2 Nov 2009 23:12:46 +0000 Subject: [PATCH] pass world --- .../weaver/reflect/ReflectionFastMatchInfo.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; } /** -- 2.39.5