Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/ElementSelectionSpec.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import java.util.*;
5 5
6 - import org.litesoft.core.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 public class ElementSelectionSpec extends SelectionSpec
9 9 {
  @@ -18,7 +18,7 @@
18 18 public ElementSelectionSpec(String pElementName)
19 19 {
20 20 super(SelectionSpecId.ElementName);
21 - UtilsCommon.assertNotNullNotEmpty("pElementName", pElementName);
21 + Strings.assertNotNullNotEmpty( "pElementName", pElementName );
22 22 mElementName = pElementName;
23 23 }
24 24