From: jhugunin Date: Wed, 18 Dec 2002 05:17:00 +0000 (+0000) Subject: fixed accidental capture of StringBuffer.append(int) X-Git-Tag: V_1_1_b2~38 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=29f7bfab4410cc182e760475ba6e71c2a62c3c47;p=aspectj.git fixed accidental capture of StringBuffer.append(int) --- diff --git a/tests/new/ArgsAlone.java b/tests/new/ArgsAlone.java index 89b3736d6..61c868efe 100644 --- a/tests/new/ArgsAlone.java +++ b/tests/new/ArgsAlone.java @@ -22,7 +22,7 @@ aspect Aspect { || execution(void TargetClass.callInt(int))); before(int i) - : !target(Aspect) && args(i) + : !target(Aspect) && args(i) && !target(StringBuffer) //&& pc() // uncomment to avoid InternalCompilerError { Tester.event("within " + i