This is an automated email from the ASF dual-hosted git repository.
rombert 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 88525ca @trivial Fixing typo in readme.
88525ca is described below
commit 88525ca9b7b28125fa09b20768825f3b2a92a9a9
Author: Mohit Arora <[email protected]>
AuthorDate: Fri Feb 7 01:40:32 2020 +0530
@trivial Fixing typo in readme.
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index f784d23..2ca4e06 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ In addition there is a `getChildren(Predicate)` method which
returns a filtered
.setBranchSelector("[jcr:primaryType] == 'cq:Page'")
.setChildSelector("[jcr:content/sling:resourceType] !=
'apps/components/page/folder'")
.stream()
- .collect(Collections.toList());
+ .collect(Collectors.toList());
```