mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
13 lines
183 B
Java
13 lines
183 B
Java
class DataFlowBug {
|
|
|
|
public void add2() {
|
|
try {
|
|
throw null;
|
|
} catch (Throwable e) {
|
|
if (e instanceof NullPointerException) {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
} |