diff options
author | jhugunin <jhugunin> | 2003-08-08 00:26:22 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-08-08 00:26:22 +0000 |
commit | efc1cc47398443b33fe90da11c4cf1d14dc9c108 (patch) | |
tree | 9c967c62b6b4b51003b282976f2558ee7914cb91 /org.aspectj.ajdt.core/testsrc | |
parent | bdfba603c4aee6d32a4873ddca43657e6eee92a8 (diff) | |
download | aspectj-efc1cc47398443b33fe90da11c4cf1d14dc9c108.tar.gz aspectj-efc1cc47398443b33fe90da11c4cf1d14dc9c108.zip |
fix for Bugzilla Bug 41175
binary aspect-declared methods conflict, lost their exception clauses
larger fix to address more issues with aspect-declared methods in bytecode form
also addressed declared exception issue more generally
this fix should be more stable than a smaller hack that just fixed this specific bug
report would have been. added a few tests to match increased scope.
Diffstat (limited to 'org.aspectj.ajdt.core/testsrc')
-rw-r--r-- | org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BinaryFormsTestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BinaryFormsTestCase.java b/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BinaryFormsTestCase.java index c98a12a11..0382c9a1f 100644 --- a/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BinaryFormsTestCase.java +++ b/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BinaryFormsTestCase.java @@ -101,7 +101,7 @@ public class BinaryFormsTestCase extends CommandTestCase { args.add("testdata/src1/binary/client/Client1.java"); - CommandTestCase.runCompiler(args, new int[] {9, 11, 15, 17}); + CommandTestCase.runCompiler(args, new int[] {15, 17, 22}); args = new ArrayList(); args.add("-classpath"); |