You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/11/21 20:05:53 UTC

svn commit: r882971 - /commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/MethodUtilsTest.java

Author: sebb
Date: Sat Nov 21 19:05:52 2009
New Revision: 882971

URL: http://svn.apache.org/viewvc?rev=882971&view=rev
Log:
Generic fix

Modified:
    commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/MethodUtilsTest.java

Modified: commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/MethodUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/MethodUtilsTest.java?rev=882971&r1=882970&r2=882971&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/MethodUtilsTest.java (original)
+++ commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/MethodUtilsTest.java Sat Nov 21 19:05:52 2009
@@ -87,7 +87,7 @@
         }
     }
 
-    private static class TestMutable implements Mutable {
+    private static class TestMutable implements Mutable<Object> {
         public Object getValue() {
             return null;
         }