Subversion Repository Public Repository

litesoft

Diff Revisions 72 vs 799 for /trunk/Java/core/Server/src/org/litesoft/codegen/AbstractSourceCodeFileGenerator.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 @SuppressWarnings({"UnusedDeclaration"})
9 9 public class AbstractSourceCodeFileGenerator
  @@ -94,7 +94,7 @@
94 94 @SuppressWarnings({"UnusedDeclaration"})
95 95 protected static String tabLevel( int numTabs )
96 96 {
97 - return (numTabs < 1) ? "" : Utils.spaces( numTabs * 4 );
97 + return (numTabs < 1) ? "" : Strings.spaces( numTabs * 4 );
98 98 }
99 99
100 100 @SuppressWarnings({"UnusedDeclaration"})