Removing unnecessary <p> and Class variable
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@897533 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5494a87bbb
commit
86e893cc6d
|
@ -813,7 +813,6 @@ public class HashCodeBuilder {
|
||||||
* <p>
|
* <p>
|
||||||
* Append a <code>hashCode</code> for a <code>long</code>.
|
* Append a <code>hashCode</code> for a <code>long</code>.
|
||||||
* </p>
|
* </p>
|
||||||
* <p>
|
|
||||||
*
|
*
|
||||||
* @param value
|
* @param value
|
||||||
* the long to add to the <code>hashCode</code>
|
* the long to add to the <code>hashCode</code>
|
||||||
|
@ -862,8 +861,7 @@ public class HashCodeBuilder {
|
||||||
iTotal = iTotal * iConstant;
|
iTotal = iTotal * iConstant;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Class clss = object.getClass();
|
if(object.getClass().isArray()) {
|
||||||
if(clss.isArray()) {
|
|
||||||
// 'Switch' on type of array, to dispatch to the correct handler
|
// 'Switch' on type of array, to dispatch to the correct handler
|
||||||
// This handles multi dimensional arrays
|
// This handles multi dimensional arrays
|
||||||
if (object instanceof long[]) {
|
if (object instanceof long[]) {
|
||||||
|
|
Loading…
Reference in New Issue