Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/TextFile.java

Diff revisions: vs.
  @@ -2,7 +2,6 @@
2 2
3 3 import org.litesoft.core.simpletypes.nonpublic.*;
4 4 import org.litesoft.core.typeutils.*;
5 - import org.litesoft.core.util.*;
6 5
7 6 public class TextFile extends EqualSupport implements SimpleType
8 7 {
  @@ -18,7 +17,7 @@
18 17
19 18 public TextFile( String pFileName, String... pLines )
20 19 {
21 - mFileName = UtilsCommon.assertNotNullNotEmpty( "FileName", pFileName );
20 + mFileName = Strings.assertNotNullNotEmpty( "FileName", pFileName );
22 21 mLines = new TextLines( Objects.assertNotNull( "Lines", pLines ) );
23 22 }
24 23