blob: 5c6dc81fe3390ac8b538fac2b2fbe098edde9adb [file] [log] [blame]
class Foo {
private void someMethod(String someArg) {
someArg.getClass();
if (<warning descr="Condition 'someArg == null' is always 'false'">someArg == null</warning>) {
System.err.println("Wrong argument");
}
}
}