Do not hide member has with local variable

This commit is contained in:
Paul Schaub 2021-08-15 15:44:52 +02:00
parent e368a8b16a
commit 452ee3fb30
1 changed files with 6 additions and 6 deletions

View File

@ -171,12 +171,12 @@ public final class UserId implements CharSequence {
if (hash != Long.MAX_VALUE) {
return (int) hash;
} else {
int hash = 7;
hash = 31 * hash + (name == null ? 0 : name.hashCode());
hash = 31 * hash + (comment == null ? 0 : comment.hashCode());
hash = 31 * hash + (email == null ? 0 : email.toLowerCase().hashCode());
this.hash = hash;
return hash;
int hashCode = 7;
hashCode = 31 * hashCode + (name == null ? 0 : name.hashCode());
hashCode = 31 * hashCode + (comment == null ? 0 : comment.hashCode());
hashCode = 31 * hashCode + (email == null ? 0 : email.toLowerCase().hashCode());
this.hash = hashCode;
return hashCode;
}
}