in modules/core/src/main/java/org/apache/fluo/recipes/core/types/TypedSnapshotBase.java [242:253]
public boolean equals(Object o) {
if (o instanceof Value) {
Value ov = (Value) o;
if (getBytes() == null) {
return ov.getBytes() == null;
} else {
return getBytes().equals(ov.getBytes());
}
}
return false;
}