Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,9 +1,9 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.client.dev.ui.inspection.interactors;
3 3
4 - import org.litesoft.GWT.client.*;
5 4 import org.litesoft.GWT.client.dev.ui.actions.*;
6 5 import org.litesoft.GWT.client.dev.ui.inspection.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 import com.google.gwt.dom.client.*;
9 9
  @@ -15,8 +15,8 @@
15 15
16 16 public JQueryInteractor(JQueryActionSpec pAction, Element pElement)
17 17 {
18 - mAction = UtilsGwt.assertNotNull("pAction", pAction);
19 - mElement = UtilsGwt.assertNotNull("pElement", pElement);
18 + mAction = Objects.assertNotNull( "pAction", pAction );
19 + mElement = Objects.assertNotNull( "pElement", pElement );
20 20 }
21 21
22 22 public void execute()