Skip to content

Commit f65469e

Browse files
committed
formatting
1 parent d58a463 commit f65469e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/graphql/util/DefaultTraverserContext.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ public DefaultTraverserContext(T curNode,
5858
} else {
5959
this.breadcrumbs = ImmutableList.<Breadcrumb<T>>builderWithExpectedSize(parent.getBreadcrumbs().size() + 1)
6060
.add(new Breadcrumb<>(this.parent.thisNode(), this.location))
61-
.addAll(parent.getBreadcrumbs()).build();
61+
.addAll(parent.getBreadcrumbs())
62+
.build();
6263

6364
}
6465
}

0 commit comments

Comments
 (0)