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/26 02:33:26 UTC

svn commit: r829684 - /commons/proper/lang/trunk/src/java/org/apache/commons/lang/ArrayUtils.java

Author: sebb
Date: Mon Oct 26 01:33:25 2009
New Revision: 829684

URL: http://svn.apache.org/viewvc?rev=829684&view=rev
Log:
No longer need to suppress warning

Modified:
    commons/proper/lang/trunk/src/java/org/apache/commons/lang/ArrayUtils.java

Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/ArrayUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/ArrayUtils.java?rev=829684&r1=829683&r2=829684&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/java/org/apache/commons/lang/ArrayUtils.java (original)
+++ commons/proper/lang/trunk/src/java/org/apache/commons/lang/ArrayUtils.java Mon Oct 26 01:33:25 2009
@@ -173,7 +173,6 @@
      * @param stringIfNull  the String to return if the array is <code>null</code>
      * @return a String representation of the array
      */
-    @SuppressWarnings("unchecked")
     public static String toString(Object array, String stringIfNull) {
         if (array == null) {
             return stringIfNull;