소스 검색

remove println

tags/gwtquery-project-1.4.3
Manuel Carrasco Moñino 10 년 전
부모
커밋
ab79a6dbef
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1
    3
      gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java

+ 1
- 3
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java 파일 보기

@@ -168,7 +168,7 @@ public class Ajax extends GQuery {
}, new Function() {
public Object f(Object...args) {
Throwable exception = arguments(0);
Request request = arguments(1);
Request request = getArgument(1, Request.class);
String msg = String.valueOf(exception);
return new Object[]{null, msg, request, null, exception};
}
@@ -212,8 +212,6 @@ public class Ajax extends GQuery {
settings.setDataString(dataString);
settings.setContentType(contentType);
}
System.out.println(settings.getDataString());

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

Loading…
취소
저장