Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/core/util/TypeConverter.java

Diff revisions: vs.
  @@ -444,12 +444,12 @@
444 444 }
445 445 if ( pObject instanceof Object[] )
446 446 {
447 - return new TextLines( UtilsCommon.toStringArray( (Object[]) pObject ) );
447 + return new TextLines( Strings.toArray( (Object[]) pObject ) );
448 448 }
449 449 if ( pObject instanceof java.util.Collection )
450 450 {
451 - return new TextLines( UtilsCommon.toStringArray( (java.util.Collection) pObject ) );
451 + return new TextLines( Strings.toArray( (java.util.Collection) pObject ) );
452 452 }
453 - return new TextLines( UtilsCommon.splitLines( pObject.toString() ) );
453 + return new TextLines( Strings.splitLines( pObject.toString() ) );
454 454 }
455 455 }