mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 02:19:10 +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);
|
|
}
|
|
}
|