Skip to content
Snippets Groups Projects

Mvo allow peer review 3

Merged Mathieu.Vonlanthen requested to merge MVO-allow-peer-review-3 into master
@@ -107,11 +107,11 @@ public class AnonymizedDeposit extends ResourceNormalized {
return false;
AnonymizedDeposit that = (AnonymizedDeposit) o;
return Objects.equals(deposit, that.deposit) && Objects.equals(timestamp, that.timestamp) && Objects.equals(
aggregateChecksum, that.aggregateChecksum);
aggregateChecksum, that.aggregateChecksum) && Objects.equals(pageId, that.pageId);
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), deposit, timestamp, aggregateChecksum);
return Objects.hash(super.hashCode(), deposit, timestamp, aggregateChecksum, pageId);
}
}
Loading