You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2008/06/10 19:44:26 UTC

svn commit: r666234 - /commons/sandbox/functor/trunk/src/test/java/org/apache/commons/functor/adapter/TestIgnoreRightFunction.java

Author: mbenson
Date: Tue Jun 10 10:44:26 2008
New Revision: 666234

URL: http://svn.apache.org/viewvc?rev=666234&view=rev
Log:
unchecked

Modified:
    commons/sandbox/functor/trunk/src/test/java/org/apache/commons/functor/adapter/TestIgnoreRightFunction.java

Modified: commons/sandbox/functor/trunk/src/test/java/org/apache/commons/functor/adapter/TestIgnoreRightFunction.java
URL: http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/test/java/org/apache/commons/functor/adapter/TestIgnoreRightFunction.java?rev=666234&r1=666233&r2=666234&view=diff
==============================================================================
--- commons/sandbox/functor/trunk/src/test/java/org/apache/commons/functor/adapter/TestIgnoreRightFunction.java (original)
+++ commons/sandbox/functor/trunk/src/test/java/org/apache/commons/functor/adapter/TestIgnoreRightFunction.java Tue Jun 10 10:44:26 2008
@@ -45,7 +45,7 @@
     // ------------------------------------------------------------------------
 
     protected Object makeFunctor() {
-        return new IgnoreRightFunction(new Constant("xyzzy"));
+        return new IgnoreRightFunction<Object, Object, Object>(Constant.of("xyzzy"));
     }
 
     // Lifecycle