diff options
author | jhugunin <jhugunin> | 2002-12-17 19:45:16 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-17 19:45:16 +0000 |
commit | 40465fccadecf900571dd7541088a33c6548b2a0 (patch) | |
tree | c190691d4d34a6d73f743926ea98725ee65f431d /tests/new/foemmel | |
parent | 5016e1aed02883fb35e930ba6f98a29bd350503f (diff) | |
download | aspectj-40465fccadecf900571dd7541088a33c6548b2a0.tar.gz aspectj-40465fccadecf900571dd7541088a33c6548b2a0.zip |
removed inaccurate old comment
Diffstat (limited to 'tests/new/foemmel')
-rw-r--r-- | tests/new/foemmel/TheAspect.java | 2 |
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; } |