Browse Source

remove println

tags/gwtquery-project-1.4.3
Manuel Carrasco Moñino 10 years ago
parent
commit
ab79a6dbef

+ 1
- 3
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java View File

}, new Function() { }, new Function() {
public Object f(Object...args) { public Object f(Object...args) {
Throwable exception = arguments(0); Throwable exception = arguments(0);
Request request = arguments(1);
Request request = getArgument(1, Request.class);
String msg = String.valueOf(exception); String msg = String.valueOf(exception);
return new Object[]{null, msg, request, null, exception}; return new Object[]{null, msg, request, null, exception};
} }
settings.setDataString(dataString); settings.setDataString(dataString);
settings.setContentType(contentType); settings.setContentType(contentType);
} }
System.out.println(settings.getDataString());


if ("GET".equals(settings.getType()) && settings.getDataString() != null) { if ("GET".equals(settings.getType()) && settings.getDataString() != null) {
url += (url.contains("?") ? "&" : "?") + settings.getDataString(); url += (url.contains("?") ? "&" : "?") + settings.getDataString();

Loading…
Cancel
Save