From: aclement Date: Sat, 7 Nov 2009 22:20:44 +0000 (+0000) Subject: slowly merging in optimizations X-Git-Tag: V1_6_7~129 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d80b8aa5a339d331c39cc84635187555ce2dcd86;p=aspectj.git slowly merging in optimizations --- diff --git a/weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java b/weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java index bdc4abe0a..9b7aa00d6 100644 --- a/weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java +++ b/weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java @@ -46,7 +46,7 @@ public class JoinPointSignatureIteratorTests extends TestCase { // and one is not. The aim of the test here is that the join point signatures generated for both // should be the same because of the use of a proxy. - List l = proxy.getMethodsWithoutIterator(false, false); + List l = proxy.getMethodsWithoutIterator(false, false, false); for (Object object : l) { ResolvedMember rm = (ResolvedMember) object; if (expectedResults.containsKey(rm.toString())) {