diff options
Diffstat (limited to 'test/delombok/resource/after/SneakyThrowsSingle.java')
-rw-r--r-- | test/delombok/resource/after/SneakyThrowsSingle.java | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/test/delombok/resource/after/SneakyThrowsSingle.java b/test/delombok/resource/after/SneakyThrowsSingle.java deleted file mode 100644 index 519d06a9..00000000 --- a/test/delombok/resource/after/SneakyThrowsSingle.java +++ /dev/null @@ -1,26 +0,0 @@ -import java.io.IOException; -class SneakyThrowsSingle { - public void test() { - try { - System.out.println("test1"); - } catch (Throwable $ex) { - throw lombok.Lombok.sneakyThrow($ex); - } - } - public void test2() { - try { - System.out.println("test2"); - throw new IOException(); - } catch (IOException $ex) { - throw lombok.Lombok.sneakyThrow($ex); - } - } - public void test3() { - try { - System.out.println("test3"); - throw new IOException(); - } catch (IOException $ex) { - throw lombok.Lombok.sneakyThrow($ex); - } - } -}
\ No newline at end of file |