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