(ObjectInputStream stream)
| 93 | } |
| 94 | |
| 95 | @GwtIncompatible // java.io.ObjectInputStream |
| 96 | private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { |
| 97 | stream.defaultReadObject(); |
| 98 | int distinctElements = Serialization.readCount(stream); |
| 99 | setBackingMap(Maps.<E, Count>newHashMap()); |
| 100 | Serialization.populateMultiset(this, stream, distinctElements); |
| 101 | } |
| 102 | |
| 103 | @GwtIncompatible // Not needed in emulated source. |
| 104 | private static final long serialVersionUID = 0; |
nothing calls this directly
no test coverage detected