in modules/core/src/main/java/org/apache/fluo/recipes/core/transaction/LogEntry.java [73:80]
public boolean equals(Object o) {
if (o instanceof LogEntry) {
LogEntry other = (LogEntry) o;
return ((op == other.op) && row.equals(other.row) && col.equals(other.col)
&& value.equals(other.value));
}
return false;
}