public boolean equals()

in src/main/java/com/epam/eco/commons/avro/modification/CachedSchemaModifications.java [64:75]


        public boolean equals(Object obj) {
            if (this == obj) {
                return true;
            }
            if (obj == null || obj.getClass() != this.getClass()) {
                return false;
            }
            Key that = (Key)obj;
            return
                    Objects.equals(this.schema, that.schema) &&
                    Objects.equals(this.modifications, that.modifications);
        }