Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/interactors/KeystrokesElementInteractor.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
  @@ -14,8 +14,8 @@
14 14
15 15 public KeystrokesElementInteractor( KeystrokesActionSpec pAction, Element pElement)
16 16 {
17 - mAction = UtilsGwt.assertNotNull("pAction", pAction);
18 - mElement = UtilsGwt.assertNotNull("pElement", pElement);
17 + mAction = Objects.assertNotNull( "pAction", pAction );
18 + mElement = Objects.assertNotNull( "pElement", pElement );
19 19 }
20 20
21 21 public void execute()