mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
NestedIfJoinLinesHandler: fix polyadic case.
Fixes IDEA-190660 ClassCastException after code reformatting using 'Join Lines' Fixes EA-119515 - CCE: NestedIfJoinLinesHandler.tryJoinLines
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
class Foo {
|
||||
void test(int a, int b) {
|
||||
if(a > 0 && b < 0) {
|
||||
if(a > 0 <caret>&& b < 0) {
|
||||
System.out.println(a+b);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user