public boolean equals()

in services/library/src/main/java/com/google/cloud/pso/bq_pii_classifier/functions/dispatcher/BigQueryScope.java [75:83]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        BigQueryScope that = (BigQueryScope) o;
        return Objects.equals(projectIncludeList, that.projectIncludeList) &&
                Objects.equals(datasetIncludeList, that.datasetIncludeList) &&
                Objects.equals(datasetExcludeList, that.datasetExcludeList) &&
                Objects.equals(tableExcludeList, that.tableExcludeList);
    }