You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by je...@apache.org on 2018/07/30 15:40:28 UTC

[sling-org-apache-sling-resource-filter] 01/01: Modified access level

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

commit f42b5b0c30f1cf3631d543b49c266a49abb2bd17
Author: JE Bailey <ja...@sas.com>
AuthorDate: Mon Jul 30 11:40:08 2018 -0400

    Modified access level
---
 .../java/org/apache/sling/resource/filter/ResourceFilterStream.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/sling/resource/filter/ResourceFilterStream.java b/src/main/java/org/apache/sling/resource/filter/ResourceFilterStream.java
index c230133..eafa4f1 100644
--- a/src/main/java/org/apache/sling/resource/filter/ResourceFilterStream.java
+++ b/src/main/java/org/apache/sling/resource/filter/ResourceFilterStream.java
@@ -15,7 +15,6 @@ package org.apache.sling.resource.filter;
 
 import java.util.Spliterator;
 import java.util.Spliterators;
-import java.util.function.Predicate;
 import java.util.stream.Stream;
 import java.util.stream.StreamSupport;
 
@@ -24,7 +23,7 @@ import org.apache.sling.resource.filter.impl.ParseException;
 
 public class ResourceFilterStream extends ResourceStream {
 
-    protected ResourceFilterStream(Resource resource) {
+    public ResourceFilterStream(Resource resource) {
         super(resource);
     }