Closed GoogleCodeExporter closed 9 years ago
Sorry I didn't notice that Guava has an Equivalence interface, obviously in my
comment above that should be used instead of an Ordering.
new signature looks like:
public static <K, V> MapDifference<K, V> difference(Map<? extends K, ? extends
V> left, Map<? extends K, ? extends V> right, Equivalence<? super V>
equivalence)
and Objects.equals(leftValue,rightValue) should be replaced with
equivalence.equivalent(leftValue,rightValue)
Original comment by ori.schw...@gmail.com
on 7 Jun 2011 at 12:57
Original comment by cpov...@google.com
on 22 Jun 2011 at 6:24
Original comment by cpov...@google.com
on 22 Jun 2011 at 7:07
This issue has been migrated to GitHub.
It can be found at https://github.com/google/guava/issues/<id>
Original comment by cgdecker@google.com
on 1 Nov 2014 at 4:15
Original comment by cgdecker@google.com
on 3 Nov 2014 at 9:09
Original issue reported on code.google.com by
ori.schw...@gmail.com
on 5 Jun 2011 at 3:33