mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +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);
|
|
}
|
|
}
|
|
} |