Author: scolebourne Date: Tue Apr 12 15:17:07 2011 New Revision: 1091452 URL: http://svn.apache.org/viewvc?rev=1091452&view=rev Log: LANG-692 - Add hashCodeMulti varargs method
Modified: commons/proper/lang/trunk/RELEASE-NOTES.txt commons/proper/lang/trunk/src/site/changes/changes.xml commons/proper/lang/trunk/src/site/xdoc/article3_0.xml commons/proper/lang/trunk/src/site/xdoc/upgradeto3_0.xml Modified: commons/proper/lang/trunk/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/RELEASE-NOTES.txt?rev=1091452&r1=1091451&r2=1091452&view=diff ============================================================================== --- commons/proper/lang/trunk/RELEASE-NOTES.txt (original) +++ commons/proper/lang/trunk/RELEASE-NOTES.txt Tue Apr 12 15:17:07 2011 @@ -59,6 +59,7 @@ ADDITIONS IN 3.0 [LANG-667] Add a Null-safe compare() method to ObjectUtils [LANG-676] Documented potential NPE if auto-boxing occurs for some BooleanUtils methods [LANG-678] Add support for ConcurrentMap.putIfAbsent() + [LANG-692] Add hashCodeMulti varargs method REMOVALS IN 3.0 =============== Modified: commons/proper/lang/trunk/src/site/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/site/changes/changes.xml?rev=1091452&r1=1091451&r2=1091452&view=diff ============================================================================== --- commons/proper/lang/trunk/src/site/changes/changes.xml (original) +++ commons/proper/lang/trunk/src/site/changes/changes.xml Tue Apr 12 15:17:07 2011 @@ -22,6 +22,7 @@ <body> <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="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> Modified: commons/proper/lang/trunk/src/site/xdoc/article3_0.xml URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/site/xdoc/article3_0.xml?rev=1091452&r1=1091451&r2=1091452&view=diff ============================================================================== --- commons/proper/lang/trunk/src/site/xdoc/article3_0.xml (original) +++ commons/proper/lang/trunk/src/site/xdoc/article3_0.xml Tue Apr 12 15:17:07 2011 @@ -163,7 +163,7 @@ available in the <a href="userguide.html <li><code>CharSequenceUtils</code></li> <li><code>EnumUtils</code></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>builder.Builder</code></li> <li><code>exception.ContextedException</code></li> Modified: commons/proper/lang/trunk/src/site/xdoc/upgradeto3_0.xml URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/site/xdoc/upgradeto3_0.xml?rev=1091452&r1=1091451&r2=1091452&view=diff ============================================================================== --- commons/proper/lang/trunk/src/site/xdoc/upgradeto3_0.xml (original) +++ commons/proper/lang/trunk/src/site/xdoc/upgradeto3_0.xml Tue Apr 12 15:17:07 2011 @@ -77,6 +77,7 @@ ADDITIONS IN 3.0 [LANG-667] Add a Null-safe compare() method to ObjectUtils [LANG-676] Documented potential NPE if auto-boxing occurs for some BooleanUtils methods [LANG-678] Add support for ConcurrentMap.putIfAbsent() + [LANG-692] Add hashCodeMulti varargs method REMOVALS IN 3.0 ===============