aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/new/foemmel/TheAspect.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/foemmel/TheAspect.java b/tests/new/foemmel/TheAspect.java
index 7c1b8fc15..60da3c587 100644
--- a/tests/new/foemmel/TheAspect.java
+++ b/tests/new/foemmel/TheAspect.java
@@ -4,7 +4,7 @@ privileged aspect TheAspect perthis(this(TheObject)) {
private TheObject theObject;
private int myPrivate_int=-1, myPackage_int=-1, myProtected_int=-1, myPublic_int=-1;
- after() returning(TheObject obj): execution(new()) { // CW 7 nonmatching target
+ after() returning(TheObject obj): execution(new()) {
theObject = obj;
}