Constructs a new MapFact with the same mappings as specified Map. @param map the map whose mappings are to be placed in this map.
(Map<K, V> map)
| 49 | * @param map the map whose mappings are to be placed in this map. |
| 50 | */ |
| 51 | public MapFact(Map<K, V> map) { |
| 52 | this.map = Maps.newHybridMap(map); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * @return the value to which the specified key is mapped, |
nothing calls this directly
no test coverage detected