diff options
author | Manolo Carrasco <manolo@apache.org> | 2011-05-03 09:16:48 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2011-05-03 09:16:48 +0000 |
commit | 985a2445deda7c6a69e01c8b74b5940b85092e96 (patch) | |
tree | 1718d3d5d7ae06d649cedbfa34053c3154c18fc9 /gwtquery-core/src | |
parent | 9019534a5990ab8909c7d30d922311aadfda3313 (diff) | |
download | gwtquery-985a2445deda7c6a69e01c8b74b5940b85092e96.tar.gz gwtquery-985a2445deda7c6a69e01c8b74b5940b85092e96.zip |
Prepare to release 1.0.0
Diffstat (limited to 'gwtquery-core/src')
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/Query.gwt.xml | 2 | ||||
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/Query.gwt.xml b/gwtquery-core/src/main/java/com/google/gwt/query/Query.gwt.xml index b643abc6..a1fe178d 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/Query.gwt.xml +++ b/gwtquery-core/src/main/java/com/google/gwt/query/Query.gwt.xml @@ -51,7 +51,7 @@ </replace-with>
<!-- Selector Engines -->
- <replace-with class="com.google.gwt.query.client.impl.SelectorEngineSizzle">
+ <replace-with class="com.google.gwt.query.client.impl.SelectorEngineCssToXPath">
<when-type-assignable class="com.google.gwt.query.client.impl.HasSelector"/>
</replace-with>
<replace-with class="com.google.gwt.query.client.impl.SelectorEngineSizzleIE">
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java index c068bb22..7996d107 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java @@ -16,7 +16,6 @@ package com.google.gwt.query.client.impl; import com.google.gwt.core.client.GWT; -import com.google.gwt.core.client.RunAsyncCallback; import com.google.gwt.dom.client.Element; import com.google.gwt.dom.client.Node; import com.google.gwt.dom.client.NodeList; |