Use JDK hashCode() variants for primitives
See gh-8768
This commit is contained in:
@@ -124,7 +124,7 @@ public class ConditionOutcome {
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return ObjectUtils.hashCode(this.match) * 31
|
||||
return Boolean.hashCode(this.match) * 31
|
||||
+ ObjectUtils.nullSafeHashCode(this.message);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user