@serialData the comparator, the number of distinct elements, the first element, its count, the second element, its count, and so on
(ObjectOutputStream stream)
| 967 | */ |
| 968 | |
| 969 | @GwtIncompatible // java.io.ObjectOutputStream |
| 970 | private void writeObject(ObjectOutputStream stream) throws IOException { |
| 971 | stream.defaultWriteObject(); |
| 972 | stream.writeObject(elementSet().comparator()); |
| 973 | Serialization.writeMultiset(this, stream); |
| 974 | } |
| 975 | |
| 976 | @GwtIncompatible // java.io.ObjectInputStream |
| 977 | private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { |
nothing calls this directly
no test coverage detected