mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
12 lines
295 B
Java
12 lines
295 B
Java
// "Extract if (a)" "true-preview"
|
|
class TestThreadInspection {
|
|
void f(boolean a, boolean b, boolean c){
|
|
if (<caret>a || (b/*the comment inside redundant parenthesis*/)) {
|
|
System.out.println("a&b");
|
|
}
|
|
//simple end comment
|
|
else {
|
|
System.out.println("c");
|
|
}
|
|
}
|
|
} |