public boolean equals()

in src/main/java/com/epam/eco/commons/avro/modification/RemoveSchemaFieldByPath.java [108:120]


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

        RemoveSchemaFieldByPath that = (RemoveSchemaFieldByPath)obj;
        return
                Objects.equals(this.path, that.path) &&
                        Objects.equals(this.strict, that.strict);
    }