Backport COLLECTIONS-350 to 3.2.2.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/branches/COLLECTIONS_3_2_X@1713178 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1908baae60
commit
c274882161
|
@ -23,6 +23,9 @@
|
|||
|
||||
<release version="3.2.2" date="20XX-XX-XX" description="This is a bugfix release.">
|
||||
|
||||
<action issue="COLLECTIONS-350" dev="bayard" type="fix" due-to="Michael Akerman">
|
||||
Removed debug output in "MapUtils#getNumber(Map)".
|
||||
</action>
|
||||
<action issue="COLLECTIONS-335" dev="jochen" type="fix" due-to="sebb">
|
||||
Fixed cache assignment for "TreeBidiMap#entrySet".
|
||||
</action>
|
||||
|
@ -55,9 +58,6 @@
|
|||
"ListUtils#intersection(List, List)" will now also work correctly if there
|
||||
are duplicate elements in the provided lists.
|
||||
</action>
|
||||
<action issue="COLLECTIONS-350" dev="bayard" type="fix" due-to="Michael Akerman">
|
||||
Removed debug output in "MapUtils#getNumber(Map)".
|
||||
</action>
|
||||
<action issue="COLLECTIONS-334" dev="jochen" type="fix" due-to="sebb">
|
||||
Synchronized access to lock in "StaticBucketMap#size()".
|
||||
</action>
|
||||
|
|
|
@ -204,7 +204,7 @@ public class MapUtils {
|
|||
return NumberFormat.getInstance().parse(text);
|
||||
|
||||
} catch (ParseException e) {
|
||||
logInfo(e);
|
||||
// failure means null is returned
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue