@ -702,8 +702,7 @@ public abstract class ObjectUtils {
@@ -702,8 +702,7 @@ public abstract class ObjectUtils {
if ( array = = null ) {
return NULL_STRING ;
}
int length = array . length ;
if ( length = = 0 ) {
if ( array . length = = 0 ) {
return EMPTY_ARRAY ;
}
StringJoiner stringJoiner = new StringJoiner ( ARRAY_ELEMENT_SEPARATOR , ARRAY_START , ARRAY_END ) ;
@ -726,8 +725,7 @@ public abstract class ObjectUtils {
@@ -726,8 +725,7 @@ public abstract class ObjectUtils {
if ( array = = null ) {
return NULL_STRING ;
}
int length = array . length ;
if ( length = = 0 ) {
if ( array . length = = 0 ) {
return EMPTY_ARRAY ;
}
StringJoiner stringJoiner = new StringJoiner ( ARRAY_ELEMENT_SEPARATOR , ARRAY_START , ARRAY_END ) ;
@ -750,8 +748,7 @@ public abstract class ObjectUtils {
@@ -750,8 +748,7 @@ public abstract class ObjectUtils {
if ( array = = null ) {
return NULL_STRING ;
}
int length = array . length ;
if ( length = = 0 ) {
if ( array . length = = 0 ) {
return EMPTY_ARRAY ;
}
StringJoiner stringJoiner = new StringJoiner ( ARRAY_ELEMENT_SEPARATOR , ARRAY_START , ARRAY_END ) ;
@ -774,8 +771,7 @@ public abstract class ObjectUtils {
@@ -774,8 +771,7 @@ public abstract class ObjectUtils {
if ( array = = null ) {
return NULL_STRING ;
}
int length = array . length ;
if ( length = = 0 ) {
if ( array . length = = 0 ) {
return EMPTY_ARRAY ;
}
StringJoiner stringJoiner = new StringJoiner ( ARRAY_ELEMENT_SEPARATOR , ARRAY_START , ARRAY_END ) ;
@ -798,8 +794,7 @@ public abstract class ObjectUtils {
@@ -798,8 +794,7 @@ public abstract class ObjectUtils {
if ( array = = null ) {
return NULL_STRING ;
}
int length = array . length ;
if ( length = = 0 ) {
if ( array . length = = 0 ) {
return EMPTY_ARRAY ;
}
StringJoiner stringJoiner = new StringJoiner ( ARRAY_ELEMENT_SEPARATOR , ARRAY_START , ARRAY_END ) ;
@ -846,8 +841,7 @@ public abstract class ObjectUtils {
@@ -846,8 +841,7 @@ public abstract class ObjectUtils {
if ( array = = null ) {
return NULL_STRING ;
}
int length = array . length ;
if ( length = = 0 ) {
if ( array . length = = 0 ) {
return EMPTY_ARRAY ;
}
StringJoiner stringJoiner = new StringJoiner ( ARRAY_ELEMENT_SEPARATOR , ARRAY_START , ARRAY_END ) ;