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:
Henri Yandell 2010-01-09 20:23:13 +00:00
parent 5494a87bbb
commit 86e893cc6d
1 changed files with 1 additions and 3 deletions

View File

@ -813,7 +813,6 @@ public class HashCodeBuilder {
* <p>
* Append a <code>hashCode</code> for a <code>long</code>.
* </p>
* <p>
*
* @param value
* the long to add to the <code>hashCode</code>
@ -862,8 +861,7 @@ public class HashCodeBuilder {
iTotal = iTotal * iConstant;
} else {
Class clss = object.getClass();
if(clss.isArray()) {
if(object.getClass().isArray()) {
// 'Switch' on type of array, to dispatch to the correct handler
// This handles multi dimensional arrays
if (object instanceof long[]) {