aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/foemmel
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2002-12-17 19:45:16 +0000
committerjhugunin <jhugunin>2002-12-17 19:45:16 +0000
commit40465fccadecf900571dd7541088a33c6548b2a0 (patch)
treec190691d4d34a6d73f743926ea98725ee65f431d /tests/new/foemmel
parent5016e1aed02883fb35e930ba6f98a29bd350503f (diff)
downloadaspectj-40465fccadecf900571dd7541088a33c6548b2a0.tar.gz
aspectj-40465fccadecf900571dd7541088a33c6548b2a0.zip
removed inaccurate old comment
Diffstat (limited to 'tests/new/foemmel')
-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;
}