mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
10 lines
154 B
Java
10 lines
154 B
Java
class A {
|
|
String s;
|
|
boolean foo() {
|
|
boolean bar = false;
|
|
if (s == null) {
|
|
ba<caret>r = true;
|
|
}
|
|
return bar;
|
|
}
|
|
} |