IDEA-54902 Layout after Change signature is broken

Corresponding test data
This commit is contained in:
Denis Zhdanov
2010-05-14 19:09:24 +04:00
parent 8e5f41d550
commit fc53c7faff
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class Test {
void <caret>foo(boolean b,
int i) {
}
}

View File

@@ -0,0 +1,4 @@
class Test {
void foo(int i, boolean b) {
}
}