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:27 UTC

[sling-org-apache-sling-resource-filter] branch master updated (9c476b5 -> f42b5b0)

This is an automated email from the ASF dual-hosted git repository.

jeb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resource-filter.git.


 discard 9c476b5  [maven-release-plugin] prepare for next development iteration
    omit 369b260  [maven-release-plugin] prepare release org.apache.sling.resource.filter-1.0.0
     new f42b5b0  Modified access level

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9c476b5)
            \
             N -- N -- N   refs/heads/master (f42b5b0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                             | 6 ++++--
 .../java/org/apache/sling/resource/filter/ResourceFilterStream.java | 3 +--
 2 files changed, 5 insertions(+), 4 deletions(-)


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

Posted by je...@apache.org.
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);
     }