in docker/ops-playground-image/java/flink-playground-clickcountjob/src/main/java/org/apache/flink/playgrounds/ops/clickcount/records/ClickEvent.java [61:70]
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final ClickEvent that = (ClickEvent) o;
return Objects.equals(timestamp, that.timestamp) && Objects.equals(page, that.page);
}