in computer-core/src/main/java/org/apache/hugegraph/computer/core/input/loader/FileInputSplit.java [55:69]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || this.getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
FileInputSplit other = (FileInputSplit) o;
return this.type == other.type &&
Objects.equal(this.path, other.path) &&
Objects.equal(this.struct, other.struct);
}