We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caff4d4 commit 3c063baCopy full SHA for 3c063ba
oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/delegate/NodeDelegate.java
@@ -339,8 +339,7 @@ public NodeDelegate getChild(String relPath) throws RepositoryException {
339
@NotNull
340
public Iterator<NodeDelegate> getChildren() throws InvalidItemStateException {
341
Iterator<Tree> iterator = getTree().getChildren().iterator();
342
- return IteratorUtils.transform(
343
- IteratorUtils.filter(iterator, tree -> tree.exists()),
+ return IteratorUtils.transform(iterator,
344
tree -> new NodeDelegate(sessionDelegate, tree));
345
}
346
0 commit comments