aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/SneakyThrowsSingle.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2010-07-22 01:33:24 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2010-07-22 01:33:24 +0200
commit483e23d3853aa37a19390019fcf0db97ac8bc1d4 (patch)
tree1794c6fc66136f962ee4c9c6a229e39c0af827e5 /test/transform/resource/after-delombok/SneakyThrowsSingle.java
parent59e585a0c68959eb72be34524bdad19df5dc8a4d (diff)
downloadlombok-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/after-delombok/SneakyThrowsSingle.java')
-rw-r--r--test/transform/resource/after-delombok/SneakyThrowsSingle.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/transform/resource/after-delombok/SneakyThrowsSingle.java b/test/transform/resource/after-delombok/SneakyThrowsSingle.java
index 519d06a9..8901f827 100644
--- a/test/transform/resource/after-delombok/SneakyThrowsSingle.java
+++ b/test/transform/resource/after-delombok/SneakyThrowsSingle.java
@@ -3,7 +3,7 @@ class SneakyThrowsSingle {
public void test() {
try {
System.out.println("test1");
- } catch (Throwable $ex) {
+ } catch (final Throwable $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
@@ -11,7 +11,7 @@ class SneakyThrowsSingle {
try {
System.out.println("test2");
throw new IOException();
- } catch (IOException $ex) {
+ } catch (final IOException $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
@@ -19,7 +19,7 @@ class SneakyThrowsSingle {
try {
System.out.println("test3");
throw new IOException();
- } catch (IOException $ex) {
+ } catch (final IOException $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}