From 59e585a0c68959eb72be34524bdad19df5dc8a4d Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Wed, 21 Jul 2010 23:52:28 +0200 Subject: refactored the tests to prepare running ecj as well as delombok. --- .../resource/after/SneakyThrowsSingle.java | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 test/delombok/resource/after/SneakyThrowsSingle.java (limited to 'test/delombok/resource/after/SneakyThrowsSingle.java') 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 -- cgit