LANG-692 - Add hashCodeMulti varargs method
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1091452 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c60aa33843
commit
38b539ae39
|
@ -59,6 +59,7 @@ ADDITIONS IN 3.0
|
||||||
[LANG-667] Add a Null-safe compare() method to ObjectUtils
|
[LANG-667] Add a Null-safe compare() method to ObjectUtils
|
||||||
[LANG-676] Documented potential NPE if auto-boxing occurs for some BooleanUtils methods
|
[LANG-676] Documented potential NPE if auto-boxing occurs for some BooleanUtils methods
|
||||||
[LANG-678] Add support for ConcurrentMap.putIfAbsent()
|
[LANG-678] Add support for ConcurrentMap.putIfAbsent()
|
||||||
|
[LANG-692] Add hashCodeMulti varargs method
|
||||||
|
|
||||||
REMOVALS IN 3.0
|
REMOVALS IN 3.0
|
||||||
===============
|
===============
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<release version="3.0" date="Unreleased" description="Backwards incompatible update of Commons Lang to Java 5">
|
<release version="3.0" date="Unreleased" description="Backwards incompatible update of Commons Lang to Java 5">
|
||||||
|
<action type="add" issue="LANG-692">Add hashCodeMulti varargs method</action>
|
||||||
<action type="remove" issue="LANG-691">Removed DateUtils.UTC_TIME_ZONE</action>
|
<action type="remove" issue="LANG-691">Removed DateUtils.UTC_TIME_ZONE</action>
|
||||||
<action type="update" issues="LANG-687">Convert more of the StringUtils API to take CharSequence</action>
|
<action type="update" issues="LANG-687">Convert more of the StringUtils API to take CharSequence</action>
|
||||||
<action type="fix" issue="LANG-685">EqualsBuilder synchronizes on HashCodeBuilder</action>
|
<action type="fix" issue="LANG-685">EqualsBuilder synchronizes on HashCodeBuilder</action>
|
||||||
|
|
|
@ -163,7 +163,7 @@ available in the <a href="userguide.html#lang.concurrent.">user guide</a>.</p>
|
||||||
<li><code>CharSequenceUtils</code></li>
|
<li><code>CharSequenceUtils</code></li>
|
||||||
<li><code>EnumUtils</code></li>
|
<li><code>EnumUtils</code></li>
|
||||||
<li><code>JavaVersion</code> - used in SystemUtils</li>
|
<li><code>JavaVersion</code> - used in SystemUtils</li>
|
||||||
<li><code>Pair</code></li>
|
<li><code>Pair, ImmutablePair and MutablePair</code></li>
|
||||||
<li><code>Range</code> - replaces the old math.*Range classes</li>
|
<li><code>Range</code> - replaces the old math.*Range classes</li>
|
||||||
<li><code>builder.Builder</code></li>
|
<li><code>builder.Builder</code></li>
|
||||||
<li><code>exception.ContextedException</code></li>
|
<li><code>exception.ContextedException</code></li>
|
||||||
|
|
|
@ -77,6 +77,7 @@ ADDITIONS IN 3.0
|
||||||
[LANG-667] Add a Null-safe compare() method to ObjectUtils
|
[LANG-667] Add a Null-safe compare() method to ObjectUtils
|
||||||
[LANG-676] Documented potential NPE if auto-boxing occurs for some BooleanUtils methods
|
[LANG-676] Documented potential NPE if auto-boxing occurs for some BooleanUtils methods
|
||||||
[LANG-678] Add support for ConcurrentMap.putIfAbsent()
|
[LANG-678] Add support for ConcurrentMap.putIfAbsent()
|
||||||
|
[LANG-692] Add hashCodeMulti varargs method
|
||||||
|
|
||||||
REMOVALS IN 3.0
|
REMOVALS IN 3.0
|
||||||
===============
|
===============
|
||||||
|
|
Loading…
Reference in New Issue