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:
parent
7d8ac569be
commit
da8738d14a
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue