mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-09 00:25:47 +00:00
refactored the tests to prepare running ecj as well as delombok.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import java.io.IOException;
|
||||
|
||||
class SneakyThrowsSingle {
|
||||
@lombok.SneakyThrows(Throwable.class)
|
||||
public void test() {
|
||||
System.out.println("test1");
|
||||
}
|
||||
|
||||
@lombok.SneakyThrows(IOException.class)
|
||||
public void test2() {
|
||||
System.out.println("test2");
|
||||
throw new IOException();
|
||||
}
|
||||
|
||||
@lombok.SneakyThrows(value=IOException.class)
|
||||
public void test3() {
|
||||
System.out.println("test3");
|
||||
throw new IOException();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user