mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
20 lines
404 B
Java
20 lines
404 B
Java
import lombok.SneakyThrows;
|
|
class SneakyThrowsPlain {
|
|
@lombok.SneakyThrows SneakyThrowsPlain() {
|
|
super();
|
|
System.out.println("constructor");
|
|
}
|
|
|
|
@lombok.SneakyThrows SneakyThrowsPlain(int x) {
|
|
this();
|
|
System.out.println("constructor2");
|
|
}
|
|
|
|
@lombok.SneakyThrows public void test() {
|
|
System.out.println("test1");
|
|
}
|
|
|
|
@SneakyThrows public void test2() {
|
|
System.out.println("test2");
|
|
}
|
|
} |