[java-support] branch master updated: Javadoc fixes (parameter type erasure)

Ian Young ian at iay.org.uk
Mon Mar 11 10:18:52 EDT 2019


This is an automated email from the git hooks/post-receive script.

iay pushed a commit to branch master
in repository java-support.

View the commit online:
http://git.shibboleth.net/view/?p=java-support.git;a=commit;h=9e8f3ba7e70455e551d5772dfc7e9617b66757ec

The following commit(s) were added to refs/heads/master by this push:
       new  9e8f3ba   Javadoc fixes (parameter type erasure)
9e8f3ba is described below

commit 9e8f3ba7e70455e551d5772dfc7e9617b66757ec
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Mon Mar 11 14:18:48 2019 +0000

    Javadoc fixes (parameter type erasure)
---
 .../java/net/shibboleth/utilities/java/support/logic/Predicate.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/net/shibboleth/utilities/java/support/logic/Predicate.java b/src/main/java/net/shibboleth/utilities/java/support/logic/Predicate.java
index 2243897..bd98c98 100644
--- a/src/main/java/net/shibboleth/utilities/java/support/logic/Predicate.java
+++ b/src/main/java/net/shibboleth/utilities/java/support/logic/Predicate.java
@@ -25,7 +25,7 @@ import net.shibboleth.utilities.java.support.primitive.DeprecationSupport.Object
 /**
  * A convenience interface to allow our own classes to implement the Java
  * {@link java.util.function.Predicate} and log any calls to the
- * {@link #apply(T)} method as deprecated.
+ * {@link #apply(Object)} method as deprecated.
  * 
  * @param <T> type of object upon which this predicate operates
  */
@@ -36,7 +36,7 @@ public interface Predicate<T> extends java.util.function.Predicate<T> {
      * 
      * @param input input to predicate
      * 
-     * @return the result of the {@link #test(T)} method
+     * @return the result of the {@link #test(Object)} method
      * @deprecated
      */
     @Deprecated

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list