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 2011/04/07 22:06:22 UTC

svn commit: r1089971 - /commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/StringUtilsTest.java

Author: sebb
Date: Thu Apr  7 20:06:21 2011
New Revision: 1089971

URL: http://svn.apache.org/viewvc?rev=1089971&view=rev
Log:
Raw types

Modified:
    commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/StringUtilsTest.java

Modified: commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/StringUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/StringUtilsTest.java?rev=1089971&r1=1089970&r2=1089971&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/StringUtilsTest.java (original)
+++ commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/StringUtilsTest.java Thu Apr  7 20:06:21 2011
@@ -1894,7 +1894,7 @@ public class StringUtilsTest extends Tes
     // should take a String or String[] parameter and return String or String[].
     // This test enforces that this is done.
     public void testStringUtilsCharSequenceContract() {
-        Class c = StringUtils.class;
+        Class<StringUtils> c = StringUtils.class;
         Method[] methods = c.getMethods();
         for (int i=0; i<methods.length; i++) {
             Method m = methods[i];
@@ -1902,14 +1902,14 @@ public class StringUtilsTest extends Tes
                 // Assume this is mutable and ensure the first parameter is not CharSequence.
                 // It may be String or it may be something else (String[], Object, Object[]) so 
                 // don't actively test for that.
-                Class[] params = m.getParameterTypes();
+                Class<?>[] params = m.getParameterTypes();
                 if ( params.length > 0 && (params[0] == CharSequence.class || params[0] == CharSequence[].class)) {
                     fail("The method " + m + " appears to be mutable in spirit and therefore must not accept a CharSequence");
                 }
             } else {
                 // Assume this is immutable in spirit and ensure the first parameter is not String.
                 // As above, it may be something other than CharSequence.
-                Class[] params = m.getParameterTypes();
+                Class<?>[] params = m.getParameterTypes();
                 if ( params.length > 0 && (params[0] == String.class || params[0] == String[].class)) {
                     fail("The method " + m + " appears to be immutable in spirit and therefore must not accept a String");
                 }