diff options
author | Manolo Carrasco <manolo@apache.org> | 2014-04-20 09:07:25 +0200 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2014-04-20 09:07:25 +0200 |
commit | ad826c4664531e1d110f832a576b16d7fe1f29ee (patch) | |
tree | 9b7b880edfd9363f593d227a9d17e91d4aa1413f | |
parent | bae2adda4ccdd08f2251e09394b85aebdf213b37 (diff) | |
download | gwtquery-ad826c4664531e1d110f832a576b16d7fe1f29ee.tar.gz gwtquery-ad826c4664531e1d110f832a576b16d7fe1f29ee.zip |
Fix infinite loop
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java index 220ec36b..96695649 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java @@ -2873,7 +2873,7 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> { * selector that determines the content to be loaded. * */ - public GQuery load(String url, Properties data, final Function onSuccess) { + public GQuery load(String url, IsProperties data, final Function onSuccess) { return as(Ajax.Ajax).load(url, data, onSuccess); } |