From: jhugunin Date: Tue, 31 Dec 2002 00:55:32 +0000 (+0000) Subject: refactored hasThis kinda thing X-Git-Tag: V_1_1_b5~194 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6781a7d16e6c1ab8a29dcf177761880a96efbcd4;p=aspectj.git refactored hasThis kinda thing --- diff --git a/weaver/testsrc/org/aspectj/weaver/TestShadow.java b/weaver/testsrc/org/aspectj/weaver/TestShadow.java index ae22c8000..fe5b2033a 100644 --- a/weaver/testsrc/org/aspectj/weaver/TestShadow.java +++ b/weaver/testsrc/org/aspectj/weaver/TestShadow.java @@ -22,7 +22,7 @@ public class TestShadow extends Shadow { private final TypeX thisType; public TestShadow(Kind kind, Member signature, TypeX thisType, World world) { - super(kind, signature); + super(kind, signature, null); this.world = world; this.thisType = thisType; } @@ -30,12 +30,6 @@ public class TestShadow extends Shadow { public World getIWorld() { return world; } - - public boolean hasThis() { return true; } - - public TypeX getThisType() { - return thisType; - } /** this is subtly wrong. ha ha */ public TypeX getEnclosingType() {