Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Server/src/org/litesoft/util/template/StringTCsub.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import java.io.*;
5 5
6 - import org.litesoft.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 public class StringTCsub implements TCsub
9 9 {
  @@ -11,7 +11,7 @@
11 11
12 12 public StringTCsub( String pKey, String pValue )
13 13 {
14 - mKey = Utils.assertNotNullNotEmpty( "Key", pKey );
14 + mKey = Strings.assertNotNullNotEmpty( "Key", pKey );
15 15 mValue = pValue;
16 16 }
17 17