You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by sk...@apache.org on 2008/04/01 23:39:02 UTC

svn commit: r643593 - /commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/PredicateUtils.java

Author: skestle
Date: Tue Apr  1 14:39:01 2008
New Revision: 643593

URL: http://svn.apache.org/viewvc?rev=643593&view=rev
Log:
Fixed compilation error in PredicateUtils

Modified:
    commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/PredicateUtils.java

Modified: commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/PredicateUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/PredicateUtils.java?rev=643593&r1=643592&r2=643593&view=diff
==============================================================================
--- commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/PredicateUtils.java (original)
+++ commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/PredicateUtils.java Tue Apr  1 14:39:01 2008
@@ -107,7 +107,7 @@
      * @return the predicate
      */
     public static <T> Predicate<T> truePredicate() {
-        return truePredicate();
+        return TruePredicate.truePredicate();
     }
 
     /**