Fixed incorrect Java indentation for method chaining

This commit is contained in:
Daniel Woznicki 2022-04-02 10:49:09 -07:00 committed by Stephan Seitz
parent 2472e47e15
commit e1f8a8a6f8
3 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,6 @@
public class Foo {
void foo() {
new StringBuilder()
.append("a")
}
}