Populates a multimap by reading an input stream, as part of deserialization. See #writeMultimap for the data format.
(Multimap<K, V> multimap, ObjectInputStream stream)
| 166 | */ |
| 167 | |
| 168 | static <K, V> void populateMultimap(Multimap<K, V> multimap, ObjectInputStream stream) throws IOException, ClassNotFoundException { |
| 169 | int distinctKeys = stream.readInt(); |
| 170 | populateMultimap(multimap, stream, distinctKeys); |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Populates a multimap by reading an input stream, as part of |
no test coverage detected