Subversion Repository Public Repository

litesoft

Diff Revisions 809 vs 822 for /trunk/Java/core/Anywhere/src/org/litesoft/core/util/SimpleMessage.java

Diff revisions: vs.
  @@ -46,7 +46,7 @@
46 46
47 47 private static String getParam( Object[] pParameters, int pIndex )
48 48 {
49 - return (pParameters != null) && (0 <= pIndex) && (pIndex < pParameters.length) ? UtilsCommon.toString( pParameters[pIndex] ) : "";
49 + return (pParameters != null) && (0 <= pIndex) && (pIndex < pParameters.length) ? Objects.toString( pParameters[pIndex] ) : "";
50 50 }
51 51
52 52 private static interface AbstractFormatter