Subversion Repository Public Repository

litesoft

Diff Revisions 804 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/core/hierarchicaldata/HDSList.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.core.util.*;
9 8
10 9 /**
11 10 * A List 'like' class that is type safe for <String>, <HDSList>, & <HDSMap>.
  @@ -106,7 +105,7 @@
106 105
107 106 public HDSList( HierarchicalDataSource.Node pNode )
108 107 {
109 - String zStrSize = UtilsCommon.assertNotNullNotEmpty( TYPE + " 'size' attribute", pNode.getAttributeValue( "size" ) );
108 + String zStrSize = Strings.assertNotNullNotEmpty( TYPE + " 'size' attribute", pNode.getAttributeValue( "size" ) );
110 109 int zExpectedSize;
111 110 try
112 111 {