BAEL-2184 formatting

This commit is contained in:
clininger
2018-10-08 08:42:33 +07:00
parent 7d64241f16
commit 3c0bd8e6e8
2 changed files with 9 additions and 4 deletions
@@ -45,8 +45,8 @@ public class Foo {
}
public Foo deepCopy() {
return new Foo(this.id, this.name,
this.parent != null ? this.parent.deepCopy() : null);
return new Foo(
this.id, this.name, this.parent != null ? this.parent.deepCopy() : null);
}
}