Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 811 for /trunk/Java/core/Anywhere/src/org/litesoft/core/hierarchicaldata/HierarchicalDataSimpleFactory.java

Diff revisions: vs.
  @@ -182,7 +182,7 @@
182 182 }
183 183 try
184 184 {
185 - pValueSB.append( UtilsCommon.charFromHex( chars ) );
185 + pValueSB.append( Hex.from4Chars( chars ) );
186 186 }
187 187 catch ( IllegalArgumentException e )
188 188 {
  @@ -218,7 +218,7 @@
218 218 if ( (c < ' ') || (127 <= c) )
219 219 {
220 220 pSB.append( "\\x" );
221 - char[] chars = UtilsCommon.charToHex( c );
221 + char[] chars = Hex.to4Chars( c );
222 222 for ( char aChar : chars )
223 223 {
224 224 pSB.append( aChar );