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 2013/03/27 16:24:50 UTC

svn commit: r1461647 - /commons/proper/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertySetterTest.java

Author: simonetripodi
Date: Wed Mar 27 15:24:49 2013
New Revision: 1461647

URL: http://svn.apache.org/r1461647
Log:
suppressed rawtype warning by specifying generics

Modified:
    commons/proper/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertySetterTest.java

Modified: commons/proper/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertySetterTest.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertySetterTest.java?rev=1461647&r1=1461646&r2=1461647&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertySetterTest.java (original)
+++ commons/proper/ognl/trunk/src/test/java/org/apache/commons/ognl/test/PropertySetterTest.java Wed Mar 27 15:24:49 2013
@@ -33,7 +33,7 @@ public class PropertySetterTest
     extends TestCase
 {
 
-    private Map map;
+    private Map<String, String> map;
 
     private TestObject testObject = new TestObject( "propertyValue" );
 
@@ -73,7 +73,7 @@ public class PropertySetterTest
         }
     }
 
-    public Map getMap()
+    public Map<String, String> getMap()
     {
         return map;
     }