git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1354053 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-06-26 15:10:16 +00:00
parent 54f6fbf596
commit f32198b1fb
1 changed files with 3 additions and 1 deletions

View File

@ -249,7 +249,9 @@ public class URIBuilder {
}
/**
* Sets URI query. The value is expected to be escaped and may NOT contain non ASCII characters.
* Sets URI query.
* <p>
* The value is expected to be encoded form data.
*/
public URIBuilder setQuery(final String query) {
this.queryParams = parseQuery(query, Consts.UTF_8);