release notes and an exception punctuation
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@618020 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d3353f00e8
commit
3fc63457df
|
@ -1,6 +1,9 @@
|
|||
Changes since 4.0 Alpha 2
|
||||
-------------------
|
||||
|
||||
* [HTTPCLIENT-740] don't start connection GC thread in pool constructor
|
||||
Contributed by Roland Weber <rolandw at apache.org>
|
||||
|
||||
* [HTTPCLIENT-736] route planners use SchemeRegistry instead of ConnManager
|
||||
Contributed by Roland Weber <rolandw at apache.org>
|
||||
|
||||
|
|
|
@ -136,7 +136,7 @@ public abstract class AbstractClientConnAdapter
|
|||
*/
|
||||
protected final void assertNotAborted() throws InterruptedIOException {
|
||||
if (aborted) {
|
||||
throw new InterruptedIOException("Connection has been shut down");
|
||||
throw new InterruptedIOException("Connection has been shut down.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue