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