NodeItem: apply code style

Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
Paul Campbell 2016-03-14 15:43:21 +00:00
parent 9daebcea46
commit 58363e474d

View file

@ -148,8 +148,7 @@ public class NodeItem<T> implements Node<T> {
throw new NullPointerException("descendants"); throw new NullPointerException("descendants");
} }
if (!descendants.isEmpty()) { if (!descendants.isEmpty()) {
findOrCreateChild(descendants.get(0)) findOrCreateChild(descendants.get(0)).createDescendantLine(
.createDescendantLine(
descendants.subList(1, descendants.size())); descendants.subList(1, descendants.size()));
} }
} }