public boolean equals()

in src/main/java/com/epam/eco/commons/avro/modification/RemoveSchemaProperties.java [67:77]


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

        RemoveSchemaProperties that = (RemoveSchemaProperties)obj;
        return Objects.equals(this.keys, that.keys);
    }