Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/SelectionSpec.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import java.io.*;
5 5
6 - import org.litesoft.core.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 /**
9 9 * Provides parameters to a DOM crawling algorithm.
  @@ -19,7 +19,7 @@
19 19
20 20 public SelectionSpec(SelectionSpecId pId)
21 21 {
22 - UtilsCommon.assertNotNull("pId", pId);
22 + Objects.assertNotNull( "pId", pId );
23 23 mId = pId;
24 24 }
25 25