diff options
Diffstat (limited to 'tests/bugs150/pr117681/TestAspect.java')
-rw-r--r-- | tests/bugs150/pr117681/TestAspect.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bugs150/pr117681/TestAspect.java b/tests/bugs150/pr117681/TestAspect.java index 331677476..9657d6cd5 100644 --- a/tests/bugs150/pr117681/TestAspect.java +++ b/tests/bugs150/pr117681/TestAspect.java @@ -2,6 +2,6 @@ import org.aspectj.lang.annotation.*; @Aspect public class TestAspect { - @DeclareParents("Test") - public static Audit introduced = new AuditImpl(); + @DeclareParents(value="Test", defaultImpl=AuditImpl.class) + Audit introduced; } |