Subversion Repository Public Repository

litesoft

Diff Revisions 810 vs 811 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/temporal/nonpublic/TemporalParser.java

Diff revisions: vs.
  @@ -4,7 +4,7 @@
4 4 import java.util.*;
5 5
6 6 import org.litesoft.core.simpletypes.temporal.*;
7 - import org.litesoft.core.util.*;
7 + import org.litesoft.core.typeutils.*;
8 8
9 9 public class TemporalParser implements TemporalParsingSupport
10 10 {
  @@ -52,11 +52,11 @@
52 52
53 53 private PartCollector getNewCollector( char pChar, boolean pTextMonthAnOption )
54 54 {
55 - if ( UtilsCommon.isNumeric( pChar ) )
55 + if ( Characters.isNumeric( pChar ) )
56 56 {
57 57 return new NumericPC( pChar );
58 58 }
59 - if ( UtilsCommon.isAlpha( pChar ) )
59 + if ( Characters.isAlpha( pChar ) )
60 60 {
61 61 return pTextMonthAnOption ? new MonthAsTextPC( pChar ) : new StringPC( pChar );
62 62 }