Author: michaelo
Date: Thu May 28 13:47:24 2015
New Revision: 1682244
URL: http://svn.apache.org/r1682244
Log:
Fixed typo in exception message
Modified:
httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/client/protocol/ResponseContentEncoding.java
Modified: httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/client/protocol/ResponseContentEncoding.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/client/protocol/ResponseContentEncoding.java?rev=1682244&r1=1682243&r2=1682244&view=diff
==============================================================================
--- httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/client/protocol/ResponseContentEncoding.java
(original)
+++ httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/client/protocol/ResponseContentEncoding.java
Thu May 28 13:47:24 2015
@@ -143,7 +143,7 @@ public class ResponseContentEncoding imp
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());
}
}
}
|