No longer need to suppress warning
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@829684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
93a3b6b251
commit
ababfcf843
|
@ -173,7 +173,6 @@ public class ArrayUtils {
|
||||||
* @param stringIfNull the String to return if the array is <code>null</code>
|
* @param stringIfNull the String to return if the array is <code>null</code>
|
||||||
* @return a String representation of the array
|
* @return a String representation of the array
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
public static String toString(Object array, String stringIfNull) {
|
public static String toString(Object array, String stringIfNull) {
|
||||||
if (array == null) {
|
if (array == null) {
|
||||||
return stringIfNull;
|
return stringIfNull;
|
||||||
|
|
Loading…
Reference in New Issue