@serialData the number of distinct elements, the first element, its count, the second element, its count, and so on
(ObjectOutputStream stream)
| 87 | */ |
| 88 | |
| 89 | @GwtIncompatible // java.io.ObjectOutputStream |
| 90 | private void writeObject(ObjectOutputStream stream) throws IOException { |
| 91 | stream.defaultWriteObject(); |
| 92 | Serialization.writeMultiset(this, stream); |
| 93 | } |
| 94 | |
| 95 | @GwtIncompatible // java.io.ObjectInputStream |
| 96 | private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { |
nothing calls this directly
no test coverage detected