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:
Roland Weber 2008-02-03 17:06:26 +00:00
parent d3353f00e8
commit 3fc63457df
2 changed files with 4 additions and 1 deletions

View File

@ -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>

View File

@ -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.");
}
}