in src/main/java/com/epam/eco/commons/avro/avpath/PathTemplate.java [72:83]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || obj.getClass() != this.getClass()) {
return false;
}
PathTemplate that = (PathTemplate)obj;
return
Objects.equals(this.path, that.path) &&
Objects.equals(this.schema, that.schema);
}