mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
13 lines
225 B
Java
13 lines
225 B
Java
// "Invert 'if' condition" "false"
|
|
|
|
class P {
|
|
Object x;
|
|
static final String Y = "y";
|
|
|
|
public P foo(P a, P b) {
|
|
if (x <caret>instanceof String) Baz
|
|
a.bar(b, P.Y);
|
|
return a;
|
|
}
|
|
void bar(P p, String s) { }
|
|
} |