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

svn commit: r1125743 - /commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestFactoryCreate.java

Author: simonetripodi
Date: Sat May 21 16:53:08 2011
New Revision: 1125743

URL: http://svn.apache.org/viewvc?rev=1125743&view=rev
Log:
fixed generics warnings

Modified:
    commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestFactoryCreate.java

Modified: commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestFactoryCreate.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestFactoryCreate.java?rev=1125743&r1=1125742&r2=1125743&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestFactoryCreate.java (original)
+++ commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestFactoryCreate.java Sat May 21 16:53:08 2011
@@ -48,7 +48,7 @@ public class TestFactoryCreate
 
         // only used with this method
         class ThrowExceptionCreateRule
-            extends AbstractObjectCreationFactory
+            extends AbstractObjectCreationFactory<Object>
         {
             @Override
             public Object createObject( Attributes attributes )