Fixed typo in exception message

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1682243 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Osipov 2015-05-28 13:46:54 +00:00
parent 7d8ac569be
commit da8738d14a
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ public class ResponseContentEncoding implements HttpResponseInterceptor {
response.removeHeaders("Content-MD5");
} else {
if (!"identity".equals(codecname) && !ignoreUnknown) {
throw new HttpException("Unsupported Content-Coding: " + codec.getName());
throw new HttpException("Unsupported Content-Encoding: " + codec.getName());
}
}
}