mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 07:32:21 +07:00
13 lines
268 B
Java
13 lines
268 B
Java
class DataFlowBug {
|
|
|
|
public void add2() {
|
|
try {
|
|
throw <warning descr="Dereference of 'null' will produce 'NullPointerException'">null</warning>;
|
|
} catch (Throwable e) {
|
|
if (e instanceof NullPointerException) {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
} |