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/10/25 12:07:09 UTC

svn commit: r829534 - /commons/proper/lang/trunk/src/test/org/apache/commons/lang/math/NumberUtilsTest.java

Author: sebb
Date: Sun Oct 25 11:07:08 2009
New Revision: 829534

URL: http://svn.apache.org/viewvc?rev=829534&view=rev
Log:
Fix internal raw types

Modified:
    commons/proper/lang/trunk/src/test/org/apache/commons/lang/math/NumberUtilsTest.java

Modified: commons/proper/lang/trunk/src/test/org/apache/commons/lang/math/NumberUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/org/apache/commons/lang/math/NumberUtilsTest.java?rev=829534&r1=829533&r2=829534&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/org/apache/commons/lang/math/NumberUtilsTest.java (original)
+++ commons/proper/lang/trunk/src/test/org/apache/commons/lang/math/NumberUtilsTest.java Sun Oct 25 11:07:08 2009
@@ -59,7 +59,7 @@
     //-----------------------------------------------------------------------
     public void testConstructor() {
         assertNotNull(new NumberUtils());
-        Constructor[] cons = NumberUtils.class.getDeclaredConstructors();
+        Constructor<?>[] cons = NumberUtils.class.getDeclaredConstructors();
         assertEquals(1, cons.length);
         assertEquals(true, Modifier.isPublic(cons[0].getModifiers()));
         assertEquals(true, Modifier.isPublic(NumberUtils.class.getModifiers()));