You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/11/19 01:47:45 UTC

svn commit: r1543262 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Predicate.java

Author: ggregory
Date: Tue Nov 19 00:47:45 2013
New Revision: 1543262

URL: http://svn.apache.org/r1543262
Log:
Redundant use of public modifier.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Predicate.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Predicate.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Predicate.java?rev=1543262&r1=1543261&r2=1543262&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Predicate.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Predicate.java Tue Nov 19 00:47:45 2013
@@ -44,6 +44,6 @@ public interface Predicate<T> {
      * @throws IllegalArgumentException (runtime) if the input is invalid
      * @throws FunctorException (runtime) if the predicate encounters a problem
      */
-    public boolean evaluate(T object);
+    boolean evaluate(T object);
 
 }