(ObjectOutputStream stream)
| 86 | } |
| 87 | |
| 88 | @GwtIncompatible // java.io.ObjectOutputStream |
| 89 | private void writeObject(ObjectOutputStream stream) throws IOException { |
| 90 | stream.defaultWriteObject(); |
| 91 | stream.writeObject(type); |
| 92 | Serialization.writeMultiset(this, stream); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * @serialData the {@code Class<E>} for the enum type, the number of distinct |
nothing calls this directly
no test coverage detected