Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 802 for /trunk/Java/core/Server/src/org/litesoft/util/template/TemplateControl.java

Diff revisions: vs.
  @@ -4,6 +4,7 @@
4 4 import java.io.*;
5 5 import java.util.*;
6 6
7 + import org.litesoft.core.typeutils.*;
7 8 import org.litesoft.util.*;
8 9
9 10 public class TemplateControl extends AbstractReaderTC
  @@ -61,7 +62,7 @@
61 62 throws IOException
62 63 {
63 64 Utils.assertNotNull( "Writer", pWriter );
64 - pReplaceNotFoundsWith = Utils.deNull( pReplaceNotFoundsWith );
65 + pReplaceNotFoundsWith = Strings.deNull( pReplaceNotFoundsWith );
65 66 pWriter.write( blocksFromReaderReplace( pWriter, pReplaceNotFoundsWith ) );
66 67 pWriter.flush();
67 68 }