Sebb created POOL-216: ------------------------- Summary: GenericKeyedObjectPool.ensureMinIdle() does not need to check getMinIdlePerKey() Key: POOL-216 URL: https://issues.apache.org/jira/browse/POOL-216 Project: Commons Pool Issue Type: Improvement Reporter: Sebb Priority: Minor
The private method GenericKeyedObjectPool.ensureMinIdle(K) checks getMinIdlePerKey(). However, when called by ensureMinIdle(void), this check has already been done. The private method is only otherwise called by preparePool(K), so the check could be moved there. This would eliminate one extra check per key when executing the protected ensureMinIdle() method. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira