mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
10 lines
220 B
Java
10 lines
220 B
Java
// "Extract if (a)" "true-preview"
|
|
class TestThreadInspection {
|
|
void f(boolean a, boolean b, boolean c){
|
|
if (<caret>a && b) {
|
|
System.out.println("a&b");
|
|
} else {
|
|
System.out.println("c");
|
|
}
|
|
}
|
|
} |