This is an automated email from the ASF dual-hosted git repository. reschke pushed a commit to branch 1.22 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 94f3d8e2177edb5e69aa760386162fa21c6e0c42 Author: Julian Reschke <[email protected]> AuthorDate: Fri Jan 31 13:42:54 2020 +0000 OAK-8874: deprecate use of Guava Predicate class in oak-core API - fix Javadoc git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/oak/trunk@1873416 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/jackrabbit/oak/plugins/nodetype/TypePredicate.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/nodetype/TypePredicate.java b/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/nodetype/TypePredicate.java index df7956ee6e..7430eac4ce 100644 --- a/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/nodetype/TypePredicate.java +++ b/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/nodetype/TypePredicate.java @@ -204,7 +204,7 @@ public class TypePredicate implements Predicate<NodeState>, com.google.common.ba // backwards compatibility, see OAK-8874 /** - * @deprecated use {@link #test(NodeState) instead (see <a href="https://issues.apache.org/jira/browse/OAK-8874">OAK-8874</a>) + * @deprecated use {@link #test(NodeState)} instead (see <a href="https://issues.apache.org/jira/browse/OAK-8874">OAK-8874</a>) */ @Deprecated public boolean apply(@Nullable NodeState input) { @@ -213,7 +213,7 @@ public class TypePredicate implements Predicate<NodeState>, com.google.common.ba } /** - * @deprecated use {@link #test(Tree) instead (see <a href="https://issues.apache.org/jira/browse/OAK-8874">OAK-8874</a>) + * @deprecated use {@link #test(Tree)} instead (see <a href="https://issues.apache.org/jira/browse/OAK-8874">OAK-8874</a>) */ @Deprecated public boolean apply(@Nullable Tree input) { @@ -222,7 +222,7 @@ public class TypePredicate implements Predicate<NodeState>, com.google.common.ba } /** - * @deprecated use {@link #test(String, Set)) instead (see <a href="https://issues.apache.org/jira/browse/OAK-8874">OAK-8874</a>) + * @deprecated use {@link #test(String, Set)} instead (see <a href="https://issues.apache.org/jira/browse/OAK-8874">OAK-8874</a>) */ @Deprecated public boolean apply(String primary, Set<String> mixins) {
