mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 19:29:30 +07:00
dfa: analyze inner class field initializers
This commit is contained in:
+2
-1
@@ -2,13 +2,14 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
class Zoo2 {
|
||||
|
||||
void foo(@Nullable Object foo) {
|
||||
void foo(@Nullable Object foo, @Nullable Object bar) {
|
||||
if (foo == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
new Runnable() {
|
||||
int hc = foo.hashCode();
|
||||
int hc2 = <warning descr="Method invocation 'bar.hashCode()' may produce 'java.lang.NullPointerException'">bar.hashCode()</warning>;
|
||||
|
||||
public void run() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user