IDEA-103813 Character codes instead of characters when creating a new task

This commit is contained in:
Dmitry Avdeev
2013-04-01 15:20:39 +04:00
parent 1fb022cc1a
commit 47bbc68dcf
@@ -84,7 +84,6 @@ public class GenericRepository extends BaseRepositoryImpl {
httpClient.executeMethod(method);
if (method.getStatusCode() != 200) throw new Exception("Cannot get tasks: HTTP status code " + method.getStatusCode());
final String response = method.getResponseBodyAsString();
System.out.println(response);
return parseResponse(query, max, response);
}