aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/ConstructorExecInit.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new/ConstructorExecInit.java')
-rw-r--r--tests/new/ConstructorExecInit.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/ConstructorExecInit.java b/tests/new/ConstructorExecInit.java
index 02b9bf293..e27fbc205 100644
--- a/tests/new/ConstructorExecInit.java
+++ b/tests/new/ConstructorExecInit.java
@@ -20,7 +20,7 @@ aspect A {
after (Object target) : execution(*.new(..)) && target(target) && !within(A) {
Tester.event("execution");
}
- after () returning (Object target) : initialization(new(..)) && !this(A) {
+ after () returning : initialization(new(..)) && !this(A) {
Tester.event("initialization");
}
}