()
| 74 | */ |
| 75 | class="cm">// Casting to any type is safe because the set will never hold any elements. |
| 76 | @SuppressWarnings(class="st">"unchecked") |
| 77 | public static <K, V> ImmutableBiMap<K, V> of() { |
| 78 | return (ImmutableBiMap<K, V>) RegularImmutableBiMap.EMPTY; |
| 79 | } |
| 80 | |
| 81 | /** Returns an immutable bimap containing a single entry. */ |
| 82 | public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { |
no test coverage detected