public boolean equals()

in src/main/java/com/epam/eco/commons/avro/modification/AddSchemaFieldToPath.java [118:130]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || obj.getClass() != this.getClass()) {
            return false;
        }

        AddSchemaFieldToPath that = (AddSchemaFieldToPath)obj;
        return
                Objects.equals(this.field, that.field) &&
                Objects.equals(this.path, that.path);
    }