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