Skip to content

Commit

Permalink
Implements toString
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlenart committed Dec 2, 2016
1 parent 0995891 commit 0f69b0c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ public Set<Entry<String, Parameter>> entrySet() {
return Collections.unmodifiableSet(parameters.entrySet());
}

@Override
public String toString() {
return parameters.toString();
}

public static class Builder {
private Map<String, Object> requestParameterMap;
private HttpParameters parent;
Expand Down

0 comments on commit 0f69b0c

Please sign in to comment.