(BiMap<? extends K, ? extends V> delegate, @Nullable BiMap<V, K> inverse)
| 1562 | transient Set<V> values; |
| 1563 | |
| 1564 | UnmodifiableBiMap(BiMap<? extends K, ? extends V> delegate, @Nullable BiMap<V, K> inverse) { |
| 1565 | unmodifiableMap = Collections.unmodifiableMap(delegate); |
| 1566 | this.delegate = delegate; |
| 1567 | this.inverse = inverse; |
| 1568 | } |
| 1569 | |
| 1570 | @Override |
| 1571 | protected Map<K, V> delegate() { |
nothing calls this directly
no test coverage detected