Explicit boxing in main classes
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1406882 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c2e94980e1
commit
5a436e52c3
|
@ -112,9 +112,9 @@ class CPoolProxy implements InvocationHandler {
|
||||||
shutdown();
|
shutdown();
|
||||||
return null;
|
return null;
|
||||||
} else if (mname.equals("isOpen")) {
|
} else if (mname.equals("isOpen")) {
|
||||||
return isOpen();
|
return Boolean.valueOf(isOpen());
|
||||||
} else if (mname.equals("isStale")) {
|
} else if (mname.equals("isStale")) {
|
||||||
return isStale();
|
return Boolean.valueOf(isStale());
|
||||||
} else {
|
} else {
|
||||||
HttpClientConnection conn = getConnection();
|
HttpClientConnection conn = getConnection();
|
||||||
if (conn == null) {
|
if (conn == null) {
|
||||||
|
|
Loading…
Reference in New Issue