Commit 4dee630d authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Remove redundant hash code for the same field

Closes gh-9608
parent 4c29a8cf
......@@ -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