in src/main/java/com/epam/eco/commons/avro/io/parsing/GrammarError.java [55:66]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || obj.getClass() != this.getClass()) {
return false;
}
GrammarError that = (GrammarError)obj;
return
Objects.equals(this.path, that.path) &&
Objects.equals(this.message, that.message);
}