Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -119,7 +119,7 @@
119 119 {
120 120 zProblemSupportValues.add( pThrowable.getMessage() );
121 121 }
122 - zProblemSupportValues.add( UtilsCommon.printStackTraceToString( pThrowable ) );
122 + zProblemSupportValues.add( Throwables.printStackTraceToString( pThrowable ) );
123 123 }
124 124 mProblemCode = pProblemCode;
125 125 mProblemSupportValues = new String[zProblemSupportValues.size()];
  @@ -146,7 +146,7 @@
146 146 sb.append( mProblemCode );
147 147 if ( mProblemSupportValues != null )
148 148 {
149 - sb.append( UtilsCommon.toString( mProblemSupportValues, "\r\n" ) );
149 + sb.append( Objects.toString( mProblemSupportValues, "\r\n" ) );
150 150 }
151 151 return (sb.length() == 0) ? "?" : sb.toString();
152 152 }