aboutsummaryrefslogtreecommitdiffstats
path: root/weaver
diff options
context:
space:
mode:
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() {