This is an automated email from the ASF dual-hosted git repository.
jeb pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resource-filter.git
The following commit(s) were added to refs/heads/master by this push:
new d1304cb clarified readme.
d1304cb is described below
commit d1304cbd24bbfa6709bb33239a0fac69df87c2de
Author: Jason E Bailey <[email protected]>
AuthorDate: Wed Aug 29 13:15:32 2018 -0400
clarified readme.
---
README.md | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index c304bcd..4249d9f 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
[](https://builds.apache.org/view/S-Z/view/Sling/job/sling-org-apache-sling-resource-filter-1.8)
[](https://builds.apache.org/view/S-Z/view/Sling/job/sling-org-apache-sling-resource-filter-1.8/test_results_analyzer/)
[.filter(predicate).forEach(
```
## Resource Stream
-`ResourceStream` is a general utility to provide a `Stream<Resource>` which
traverses a resource and it's subtree. The implementation takes a
`Predicate<Resource>` object as part of the stream creation to define a branch
selector that controls which children of a resource are followed
+`ResourceStream` is a general utility to provide a `Stream<Resource>` which
traverses a resource and it's subtree. The implementation takes a
`Predicate<Resource>` object as part of the stream creation to define a branch
selector that controls which children of a resource are followed.
+
+In addition there is a `getChildren(Predicate)` method which returns a
filtered list of children of the given resource.
## Resource Filter Stream