You are adding extra meaning to that statement that is not there. It does not say that hashCode WILL change if the evaluation of equals changes. It is saying hashCode MAY change if the evaluation of equals changes. It is no longer guaranteed that the hashCode will be the same afterward. It is not wrong if it still is!
Remember
@Override
public int hashCode() {
return 1;
}
is a completely legal implementation of hashCode() that meets all requirements set forth by the documentation. hashCode is not, by definition, dependent on the equals calculation.
In practice they will of course be coupled together. Normally you override hashcode using all the same fields used as in equals because it is necessary that two different objects whose equals are true have the same hashCode. And return 1; wouldn't play very nice with any of the classes that actually rely on the hashCode() method.
This more fully formed example of a legal implementation of hashCode that sometimes changes when equals changes, but not always, may be more clear.
public class MakesHashMapsSlow {
private String value;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final MakesHashMapsSlow other = (MakesHashMapsSlow) obj;
if ((this.value == null) ? (other.value != null) : !this.value.equals(other.value)) {
return false;
}
return true;
}
@Override
public int hashCode() {
if (value == null || value.isEmpty()) {
return 0;
} else {
return value.charAt(0);
}
}
}