mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-08 06:10:59 +07:00
Fixes IDEA-190660 ClassCastException after code reformatting using 'Join Lines' Fixes EA-119515 - CCE: NestedIfJoinLinesHandler.tryJoinLines
7 lines
140 B
Java
7 lines
140 B
Java
class Foo {
|
|
void test(int a, int b) {
|
|
if(a > 0 <caret>&& b < 0) {
|
|
System.out.println(a+b);
|
|
}
|
|
}
|
|
} |