aboutsummaryrefslogtreecommitdiffstats
path: root/weaver
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2002-12-31 00:55:32 +0000
committerjhugunin <jhugunin>2002-12-31 00:55:32 +0000
commit6781a7d16e6c1ab8a29dcf177761880a96efbcd4 (patch)
treed616fca6fc8c2d7c7a1855e65af5373c994e676a /weaver
parentfcb23bffb3725128f528a222adb92cd6e2719fd1 (diff)
downloadaspectj-6781a7d16e6c1ab8a29dcf177761880a96efbcd4.tar.gz
aspectj-6781a7d16e6c1ab8a29dcf177761880a96efbcd4.zip
refactored hasThis kinda thing
Diffstat (limited to 'weaver')
-rw-r--r--weaver/testsrc/org/aspectj/weaver/TestShadow.java8
1 files changed, 1 insertions, 7 deletions
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() {