Commit 74a71b01 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #9608 from izeye:patch-22

* pr/9608:
  Remove redundant hash code for the same field
parents 4c29a8cf 4dee630d
......@@ -47,9 +47,7 @@ public class SystemEnvironmentOrigin implements Origin {
@Override
public int hashCode() {
int result = ObjectUtils.nullSafeHashCode(this.property);
result = 31 * result + ObjectUtils.nullSafeHashCode(this.property);
return result;
return ObjectUtils.nullSafeHashCode(this.property);
}
@Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment