[
https://issues.apache.org/jira/browse/POOL-224?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gary D. Gregory resolved POOL-224.
----------------------------------
Resolution: Fixed
commit -m "[POOL-224] FindBugs performance warnings on StackKeyedObjectPool."
C:/svn/org/apache/commons/branches/pool-1.x/src/changes/changes.xml
C:/svn/org/apache/commons/branches/pool-1.x/src/java/org/apache/commons/pool/impl/StackKeyedObjectPool.java
Sending
C:/svn/org/apache/commons/branches/pool-1.x/src/changes/changes.xml
Sending
C:/svn/org/apache/commons/branches/pool-1.x/src/java/org/apache/commons/pool/impl/StackKeyedObjectPool.java
Transmitting file data ...
Committed revision 1367304.
> FindBugs performance warnings on StackKeyedObjectPool
> -----------------------------------------------------
>
> Key: POOL-224
> URL: https://issues.apache.org/jira/browse/POOL-224
> Project: Commons Pool
> Issue Type: Improvement
> Affects Versions: 1.6
> Reporter: Liviu Tudor
> Priority: Trivial
> Labels: findbugs
> Fix For: 1.6.1
>
> Attachments: POOL-224.patch.bz2
>
> Original Estimate: 0.5h
> Remaining Estimate: 0.5h
>
> FindBugs is currently showing 2 performance warnings in
> {{StackKeyedObjectPool}} due to the usage of
> {code:java}new Integer(value){code}
> as opposed to
> {code:java}Integer.valueOf(value){code}
> Also, it seems we create a new {{Integer}} instance each time we need to
> store 1 in the map -- since the {{Integer}} class is immutable, we can
> actually share one single instance for these cases, and reduce pressure on
> the GC, and this patch addresses this minor optimization as well.
--
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