Deprecated Request#elementCharset in the fluent facade API

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1439913 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2013-01-29 14:40:26 +00:00
parent 549a45b2f4
commit b1e5098828
1 changed files with 5 additions and 0 deletions

View File

@ -232,6 +232,11 @@ public class Request {
return this;
}
/**
* This parameter can no longer be used at the request level.
* @deprecated (4.3)
*/
@Deprecated
public Request elementCharset(final String charset) {
return config(CoreProtocolPNames.HTTP_ELEMENT_CHARSET, charset);
}