Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/TextLine.java

Diff revisions: vs.
  @@ -2,7 +2,7 @@
2 2 package org.litesoft.core.simpletypes;
3 3
4 4 import org.litesoft.core.simpletypes.nonpublic.*;
5 - import org.litesoft.core.util.*;
5 + import org.litesoft.core.typeutils.*;
6 6
7 7 /**
8 8 * TextLine is Immutable and carries a non-null String that may ONLY contain characters that do NOT satisfy Character.isISOControl( (char/int)c )
  @@ -20,7 +20,7 @@
20 20
21 21 public TextLine( String pLine )
22 22 {
23 - UtilsCommon.assertNotNull( "Line", mLine = pLine );
23 + Objects.assertNotNull( "Line", mLine = pLine );
24 24 for ( int i = 0; i < mLine.length(); i++ )
25 25 {
26 26 if ( isISOControl( mLine.charAt( i ) ) )