Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Server/src/org/litesoft/util/template/RepeatingTC.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 RepeatingTC extends AbstractTC implements TCsub
11 10 {
  @@ -16,7 +15,7 @@
16 15 public RepeatingTC( String pReplacementKey, Object[] pSubstituteFroms, Reader pTemplate, Collection<TCsub> pSubstitutions )
17 16 {
18 17 super( pSubstitutions );
19 - mReplacementKey = Utils.assertNotNullNotEmpty( "ReplacementKey", pReplacementKey );
18 + mReplacementKey = Strings.assertNotNullNotEmpty( "ReplacementKey", pReplacementKey );
20 19 mSubstituteFroms = pSubstituteFroms;
21 20 Objects.assertNotNull( "Template", mTemplate = pTemplate );
22 21 }