Skip to content

Commit

Permalink
Remove spew
Browse files Browse the repository at this point in the history
  • Loading branch information
erwan committed Dec 21, 2010
1 parent 69cba71 commit dffd16e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions framework/src/play/libs/WS.java
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,7 @@ public String getString() {
public Map<String, String> getQueryString() {
Map<String, String> result = new HashMap<String, String>();
String body = getString();
Logger.info("body: " + body);
for (String entry: body.split("&")) {
Logger.info("...look at " + entry + " - " + entry.indexOf("="));
if (entry.indexOf("=") > 0) {
result.put(entry.split("=")[0], entry.split("=")[1]);
}
Expand Down

0 comments on commit dffd16e

Please sign in to comment.