Subversion Repository Public Repository

litesoft

Diff Revisions 151 vs 802 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/nonpublic/DecimalToStringParts.java

Diff revisions: vs.
  @@ -2,7 +2,7 @@
2 2 package org.litesoft.core.simpletypes.nonpublic;
3 3
4 4 import org.litesoft.core.simpletypes.*;
5 - import org.litesoft.core.util.*;
5 + import org.litesoft.core.typeutils.*;
6 6
7 7 public class DecimalToStringParts
8 8 {
  @@ -45,7 +45,7 @@
45 45 public DecimalToStringParts( String pValue, char pDecimalSeparator )
46 46 throws IllegalArgumentException
47 47 {
48 - String str = UtilsCommon.deNull( pValue ).trim();
48 + String str = Strings.deNull( pValue ).trim();
49 49 if ( str.startsWith( PLUS ) )
50 50 {
51 51 str = validate( str, PLUS, str.substring( 1 ), "started" );