We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 762db8f + c61b761 commit d552799Copy full SHA for d552799
src/main/java/com/networknt/schema/ValidationMessage.java
@@ -76,7 +76,6 @@ public boolean equals(Object o) {
76
if (type != null ? !type.equals(that.type) : that.type != null) return false;
77
if (code != null ? !code.equals(that.code) : that.code != null) return false;
78
if (path != null ? !path.equals(that.path) : that.path != null) return false;
79
- // Probably incorrect - comparing Object[] arrays with Arrays.equals
80
if (!Arrays.equals(arguments, that.arguments)) return false;
81
return !(message != null ? !message.equals(that.message) : that.message != null);
82
0 commit comments