Subversion Repository Public Repository

litesoft

Diff Revisions 489 vs 804 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/interactors/ClickElementInteractor.java

Diff revisions: vs.
  @@ -5,6 +5,7 @@
5 5 import org.litesoft.GWT.client.dev.ui.actions.*;
6 6 import org.litesoft.GWT.client.dev.ui.inspection.*;
7 7 import org.litesoft.core.*;
8 + import org.litesoft.core.typeutils.*;
8 9
9 10 import com.google.gwt.dom.client.*;
10 11
  @@ -15,8 +16,8 @@
15 16
16 17 public ClickElementInteractor( ClickActionSpec pAction, Element pElement)
17 18 {
18 - mAction = UtilsGwt.assertNotNull("pAction", pAction);
19 - mElement = UtilsGwt.assertNotNull("pElement", pElement);
19 + mAction = Objects.assertNotNull( "pAction", pAction );
20 + mElement = Objects.assertNotNull( "pElement", pElement );
20 21 }
21 22
22 23 public void execute()