diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-22 01:33:24 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-22 01:33:24 +0200 |
commit | 483e23d3853aa37a19390019fcf0db97ac8bc1d4 (patch) | |
tree | 1794c6fc66136f962ee4c9c6a229e39c0af827e5 /test/transform/resource/before/SneakyThrowsMultiple.java | |
parent | 59e585a0c68959eb72be34524bdad19df5dc8a4d (diff) | |
download | lombok-483e23d3853aa37a19390019fcf0db97ac8bc1d4.tar.gz lombok-483e23d3853aa37a19390019fcf0db97ac8bc1d4.tar.bz2 lombok-483e23d3853aa37a19390019fcf0db97ac8bc1d4.zip |
Added tests for ecj, fixed a few minor bugs that came out of that.
Diffstat (limited to 'test/transform/resource/before/SneakyThrowsMultiple.java')
-rw-r--r-- | test/transform/resource/before/SneakyThrowsMultiple.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/transform/resource/before/SneakyThrowsMultiple.java b/test/transform/resource/before/SneakyThrowsMultiple.java index 7e644f3d..95ab1140 100644 --- a/test/transform/resource/before/SneakyThrowsMultiple.java +++ b/test/transform/resource/before/SneakyThrowsMultiple.java @@ -3,13 +3,13 @@ import java.io.IOException; import java.util.Random; class SneakyThrowsMultiple { - @lombok.SneakyThrows(IOException.class,Throwable.class) + @lombok.SneakyThrows({IOException.class,Throwable.class}) public void test() { System.out.println("test1"); throw new IOException(); } - @lombok.SneakyThrows(AWTException.class,IOException.class) + @lombok.SneakyThrows({AWTException.class,IOException.class}) public void test2() { System.out.println("test2"); if (new Random().nextBoolean()) { |