ChainCallJoinLinesHandler: disable when parent is not the same

This commit is contained in:
Tagir Valeev
2018-06-01 10:46:14 +07:00
parent 3842c10375
commit 6a0d8cba1a
4 changed files with 15 additions and 0 deletions
@@ -0,0 +1,7 @@
class Foo {
void test() {
StringBuilder sb = new StringBuilder();
if(sb.length() == 0) <caret>sb.append("bar");
sb.append("baz");
}
}