diff options
Diffstat (limited to 'tests/new/EmptyInterface.java')
-rw-r--r-- | tests/new/EmptyInterface.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/new/EmptyInterface.java b/tests/new/EmptyInterface.java index db53d592a..aca01b6a8 100644 --- a/tests/new/EmptyInterface.java +++ b/tests/new/EmptyInterface.java @@ -17,11 +17,12 @@ public class EmptyInterface { aspect Log { static int hits; static StringBuffer log = new StringBuffer(); - interface LoggedType {} + interface LoggedType { + } declare parents: C implements LoggedType; - void around() : within(LoggedType+) - && !initialization(new(..)) - && !preinitialization(new(..)) // 1.1 only + after() : within(LoggedType+) + //&& !initialization(new(..)) + //&& !preinitialization(new(..)) // 1.1 only { hits++; log.append(thisJoinPoint + ";"); |