public boolean equals()

in src/main/java/com/epam/eco/commons/avro/FieldInfo.java [65:77]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || obj.getClass() != this.getClass()) {
            return false;
        }
        FieldInfo that = (FieldInfo)obj;
        return
                Objects.equals(this.parent, that.parent) &&
                Objects.equals(this.field, that.field) &&
                Objects.equals(this.path, that.path);
    }