mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 14:22:19 +00:00
6 lines
124 B
Java
6 lines
124 B
Java
class NonNullWithSneakyThrows {
|
|
@lombok.SneakyThrows void test(@lombok.NonNull String in) {
|
|
System.out.println(in);
|
|
}
|
|
}
|