[java-formatter] do not add empty call chunks, fixes IDEA-158331, yellow code removed

This commit is contained in:
Yaroslav Lepenkin
2016-07-14 13:08:51 +03:00
parent dc497d88f2
commit b75a7e3d72
4 changed files with 56 additions and 22 deletions
@@ -0,0 +1,14 @@
class A {
}
class B {
}
public class Main {
void user() {
method(, new B());
}
void <caret>method(A a, B b) {
}
}