Noting LANG-703 in the release notes
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1142382 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a80f11cf9d
commit
23a71e792b
|
@ -145,4 +145,5 @@ BUG FIXES IN 3.0
|
|||
[LANG-664] NumberUtils.isNumber(String) is not right when the String is "1.1L"
|
||||
[LANG-672] Doc bug in DateUtils#ceiling
|
||||
[LANG-677] DateUtils.isSameLocalTime compares using 12 hour clock and not 24 hour
|
||||
|
||||
[LANG-685] EqualsBuilder synchronizes on HashCodeBuilder.
|
||||
[LANG-703] StringUtils.join throws NPE when toString returns null for one of objects in collection
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
<body>
|
||||
|
||||
<release version="3.0" date="Unreleased" description="Backwards incompatible update of Commons Lang to Java 5">
|
||||
<action type="fix" issue="LANG-703">StringUtils.join throws NPE when toString returns null for one of objects in collection</action>
|
||||
<action type="add" issue="LANG-697">Add FormattableUtils class</action>
|
||||
<action type="add">Add ClassUtils.getSimpleName() methods</action>
|
||||
<action type="add" issue="LANG-692">Add hashCodeMulti varargs method</action>
|
||||
|
|
|
@ -161,6 +161,7 @@ BUG FIXES IN 3.0
|
|||
[LANG-672] Doc bug in DateUtils#ceiling
|
||||
[LANG-677] DateUtils.isSameLocalTime compares using 12 hour clock and not 24 hour
|
||||
[LANG-685] EqualsBuilder synchronizes on HashCodeBuilder.
|
||||
[LANG-703] StringUtils.join throws NPE when toString returns null for one of objects in collection
|
||||
|
||||
</source>
|
||||
</p>
|
||||
|
|
Loading…
Reference in New Issue