Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -3,7 +3,6 @@
3 3 import java.util.*;
4 4
5 5 import org.litesoft.core.typeutils.*;
6 - import org.litesoft.core.util.*;
7 6
8 7 /**
9 8 * Externalization Data to be used with an Externally Sourced String keyed
  @@ -63,7 +62,7 @@
63 62 */
64 63 public E13nData( Object templateIdCode )
65 64 {
66 - this.templateIdCode = UtilsCommon.assertNoEmptyToString( "templateIdCode", templateIdCode );
65 + this.templateIdCode = Objects.assertNoEmptyToString( "templateIdCode", templateIdCode );
67 66 }
68 67
69 68 private synchronized E13nData addPair( boolean userData, String name, String value )