Skip to content

Commit cebde03

Browse files
committed
Javadoc
1 parent dfaa238 commit cebde03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ public HashCodeBuilder append(final int[] array) {
732732
// NOTE: This method uses >> and not >>> as Effective Java and
733733
// Long.hashCode do. Ideally we should switch to >>> at
734734
// some stage. There are backwards compat issues, so
735-
// that will have to wait for the time being. cf LANG-342.
735+
// that will have to wait for the time being. See LANG-342.
736736
public HashCodeBuilder append(final long value) {
737737
iTotal = iTotal * iConstant + (int) (value ^ value >> 32);
738738
return this;

0 commit comments

Comments
 (0)