in services/library/src/main/java/com/google/cloud/pso/bq_pii_classifier/entities/TableSpec.java [76:83]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TableSpec tableSpec = (TableSpec) o;
return Objects.equals(project, tableSpec.project) &&
Objects.equals(dataset, tableSpec.dataset) &&
Objects.equals(table, tableSpec.table);
}