mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
68 lines
2.2 KiB
Java
68 lines
2.2 KiB
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Foo {
|
|
@Nullable volatile Object data;
|
|
|
|
void checkNotNullAndUse(Foo f) {
|
|
if (f.data != null) {
|
|
System.out.println(f.data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
}
|
|
}
|
|
|
|
void checkNullAndReturn(Foo f) {
|
|
if (f.data == null) {
|
|
return;
|
|
}
|
|
System.out.println(f.data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
}
|
|
|
|
void warnWhenWrongCheck() {
|
|
if (data != null) {
|
|
return;
|
|
}
|
|
System.out.println(data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
System.out.println(data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
}
|
|
|
|
void warnWhenNotChecked(Foo f) {
|
|
System.out.println(f.data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
}
|
|
|
|
void warnWhenNotCheckedThis() {
|
|
System.out.println(data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
}
|
|
|
|
void dontWarnWhenDoubleChecked(Foo f) {
|
|
if (f.data == null) {
|
|
return;
|
|
}
|
|
if (f.data == null) {
|
|
return;
|
|
}
|
|
System.out.println(f.data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
}
|
|
|
|
void dontWarnWhenDoubleChecked_This_Synchronized() {
|
|
if (data == null) {
|
|
return;
|
|
}
|
|
synchronized (this) {
|
|
if (data == null) {
|
|
return;
|
|
}
|
|
}
|
|
System.out.println(data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
}
|
|
|
|
void dontWarnWhenDoubleChecked_This_WithMethodCall() {
|
|
if (data == null) {
|
|
return;
|
|
}
|
|
System.out.println(data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
if (data == null) {
|
|
return;
|
|
}
|
|
System.out.println(data.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>());
|
|
}
|
|
|
|
} |