diff options
author | Manolo Carrasco <manolo@apache.org> | 2014-05-03 09:34:16 +0200 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2014-05-03 09:34:16 +0200 |
commit | d5390a6102faf701b926ffb5cb0cde385fcdd666 (patch) | |
tree | d1a57a6751804e269c2d9033f199c7fb5bab598b /gwtquery-core/src | |
parent | afe06b8f7bd45c024fab1f0bf076d05bb7b5d7fd (diff) | |
download | gwtquery-d5390a6102faf701b926ffb5cb0cde385fcdd666.tar.gz gwtquery-d5390a6102faf701b926ffb5cb0cde385fcdd666.zip |
import order
Diffstat (limited to 'gwtquery-core/src')
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java index eaf446e7..5f3cf531 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java @@ -13,11 +13,6 @@ */ package com.google.gwt.query.client.plugins.events; -import static com.google.gwt.query.client.GQuery.$; - -import java.util.ArrayList; -import java.util.List; - import com.google.gwt.core.client.Duration; import com.google.gwt.dom.client.Element; import com.google.gwt.dom.client.EventTarget; @@ -33,6 +28,11 @@ import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.Event; import com.google.gwt.user.client.EventListener; +import java.util.ArrayList; +import java.util.List; + +import static com.google.gwt.query.client.GQuery.$; + /** * This class implements an event queue instance for one Element. The queue instance is configured * as the default event listener in GWT. |