We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfaa238 commit cebde03Copy full SHA for cebde03
src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
@@ -732,7 +732,7 @@ public HashCodeBuilder append(final int[] array) {
732
// NOTE: This method uses >> and not >>> as Effective Java and
733
// Long.hashCode do. Ideally we should switch to >>> at
734
// some stage. There are backwards compat issues, so
735
- // that will have to wait for the time being. cf LANG-342.
+ // that will have to wait for the time being. See LANG-342.
736
public HashCodeBuilder append(final long value) {
737
iTotal = iTotal * iConstant + (int) (value ^ value >> 32);
738
return this;
0 commit comments