diff options
author | Manuel Carrasco Moñino <manuel.carrasco.m@gmail.com> | 2013-12-30 21:03:03 +0100 |
---|---|---|
committer | Manuel Carrasco Moñino <manuel.carrasco.m@gmail.com> | 2013-12-30 21:03:03 +0100 |
commit | 2de421f5509374242b5704d098b7e9ae2532d5ca (patch) | |
tree | 0f2781aca097730a114285ca84687838a04633c1 | |
parent | 26d30bf88f643c043768960d356c4f7e84e5667d (diff) | |
download | gwtquery-2de421f5509374242b5704d098b7e9ae2532d5ca.tar.gz gwtquery-2de421f5509374242b5704d098b7e9ae2532d5ca.zip |
Remove method used for testing
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java index 97a95996..9da8e7dd 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java @@ -330,10 +330,6 @@ public class Ajax extends GQuery { ); } - public static Promise post(Settings s) { - return ajax(s); - } - public static Promise post(String url, Properties data) { return post(url, data, null); } |