mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
24 lines
425 B
Java
24 lines
425 B
Java
import java.io.IOException;
|
|
class Issue {
|
|
|
|
public static void main(String[] args) {
|
|
newMethod();
|
|
}
|
|
|
|
private static void newMethod() {
|
|
swallow(() -> {
|
|
throw new IOException();
|
|
});
|
|
}
|
|
|
|
private static void swallow(ThrowsUnchecked r) {
|
|
try {
|
|
r.doAction();
|
|
} catch (IOException ignored) {
|
|
}
|
|
}
|
|
}
|
|
|
|
interface ThrowsUnchecked {
|
|
void doAction() throws IOException;
|
|
} |