Javadoc typos

This commit is contained in:
Gary Gregory 2023-05-19 08:43:51 -04:00
parent dd10e5e0e6
commit 01190c61ea
3 changed files with 7 additions and 7 deletions

View File

@ -1868,7 +1868,7 @@ public class TreeBidiMap<K extends Comparable<K>, V extends Comparable<V>>
private final Node<K, V>[] rightNode; private final Node<K, V>[] rightNode;
private final Node<K, V>[] parentNode; private final Node<K, V>[] parentNode;
private final boolean[] blackColor; private final boolean[] blackColor;
private int hashcodeValue; private int hashCodeValue;
private boolean calculatedHashCode; private boolean calculatedHashCode;
/** /**
@ -2073,10 +2073,10 @@ public class TreeBidiMap<K extends Comparable<K>, V extends Comparable<V>>
@Override @Override
public int hashCode() { public int hashCode() {
if (!calculatedHashCode) { if (!calculatedHashCode) {
hashcodeValue = getKey().hashCode() ^ getValue().hashCode(); hashCodeValue = getKey().hashCode() ^ getValue().hashCode();
calculatedHashCode = true; calculatedHashCode = true;
} }
return hashcodeValue; return hashCodeValue;
} }
} }