(
Map<K, V> onlyOnLeft,
Map<K, V> onlyOnRight,
Map<K, V> onBoth,
Map<K, ValueDifference<V>> differences)
| 535 | final Map<K, ValueDifference<V>> differences; |
| 536 | |
| 537 | MapDifferenceImpl( |
| 538 | Map<K, V> onlyOnLeft, |
| 539 | Map<K, V> onlyOnRight, |
| 540 | Map<K, V> onBoth, |
| 541 | Map<K, ValueDifference<V>> differences) { |
| 542 | this.onlyOnLeft = unmodifiableMap(onlyOnLeft); |
| 543 | this.onlyOnRight = unmodifiableMap(onlyOnRight); |
| 544 | this.onBoth = unmodifiableMap(onBoth); |
| 545 | this.differences = unmodifiableMap(differences); |
| 546 | } |
| 547 | |
| 548 | @Override |
| 549 | public boolean areEqual() { |
nothing calls this directly
no test coverage detected