Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 804 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/actions/JQueryActionSpec.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
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.actions;
3 3
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 public class JQueryActionSpec extends ActionSpec
7 7 {
  @@ -26,7 +26,7 @@
26 26 public JQueryActionSpec(Event pEvent)
27 27 {
28 28 super(ActionSpecId.JQuery);
29 - mEvent = UtilsCommon.assertNotNull("pEvent", pEvent);
29 + mEvent = Objects.assertNotNull( "pEvent", pEvent );
30 30 }
31 31
32 32 public Event getEvent()