Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -5,7 +5,6 @@
5 5 import java.util.*;
6 6
7 7 import org.litesoft.core.typeutils.*;
8 - import org.litesoft.util.*;
9 8
10 9 public class SubTC extends AbstractReaderTC implements TCsub
11 10 {
  @@ -14,7 +13,7 @@
14 13 public SubTC( String pReplacementKey, Reader pTemplate, Collection<TCsub> pSubstitutions )
15 14 {
16 15 super( pTemplate, pSubstitutions );
17 - mReplacementKey = Utils.assertNotNullNotEmpty( "ReplacementKey", pReplacementKey );
16 + mReplacementKey = Strings.assertNotNullNotEmpty( "ReplacementKey", pReplacementKey );
18 17 Objects.assertNotNull( "Template", mTemplate = pTemplate );
19 18 }
20 19