Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://unlicense.org
2 2 package org.litesoft.GWT.client.dev.ui.inspection;
3 3
4 - import org.litesoft.commonfoundation.typeutils.*;
4 + import org.litesoft.commonfoundation.base.*;
5 5
6 6 import java.util.*;
7 7
  @@ -20,7 +20,7 @@
20 20 public ElementSelectionSpec(String pElementName)
21 21 {
22 22 super(SelectionSpecId.ElementName);
23 - Strings.assertNotNullNotEmpty( "pElementName", pElementName );
23 + Confirm.significant( "pElementName", pElementName );
24 24 mElementName = pElementName;
25 25 }
26 26