Skip to content

Commit

Permalink
Remove useless spew
Browse files Browse the repository at this point in the history
  • Loading branch information
erwan committed Dec 21, 2010
1 parent 42de353 commit 69cba71
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions framework/src/play/libs/ws/WSAsync.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ protected WSAsyncRequest(String url) {
public HttpResponse get() {
this.type = "GET";
sign();
Logger.info(url);
try {
return new HttpAsyncResponse(prepare(httpClient.prepareGet(url)).execute().get());
} catch (Exception e) {
Expand All @@ -125,7 +124,6 @@ public HttpResponse get() {
public Future<HttpResponse> getAsync() {
this.type = "GET";
sign();
Logger.info(url);
return execute(httpClient.prepareGet(url));
}

Expand Down

0 comments on commit 69cba71

Please sign in to comment.