Javadoc typos
This commit is contained in:
parent
dd10e5e0e6
commit
01190c61ea
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue