Subversion Repository Public Repository

litesoft

Diff Revisions 818 vs 819 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/toolkit/IdentifierValidatorAbstract.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.aokeyhole.toolkit;
3 3
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 public abstract class IdentifierValidatorAbstract implements IdentifierValidator
7 7 {
  @@ -24,7 +24,7 @@
24 24 {
25 25 if ( !isIdentifierRestCharacterValid( pIdentifier.charAt( i ) ) )
26 26 {
27 - return "The " + UtilsCommon.toNth( i + 1 ) + " character of the " + pPurpose + " provided '" + pIdentifier + "' is not " +
27 + return "The " + Integers.toNth( i + 1 ) + " character of the " + pPurpose + " provided '" + pIdentifier + "' is not " +
28 28 getIdentifierRestCharacterValidOptionsErrorText();
29 29 }
30 30 }