(ObjectInputStream stream)
| 684 | } |
| 685 | |
| 686 | @GwtIncompatible // java.io.ObjectInputStream |
| 687 | private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { |
| 688 | stream.defaultReadObject(); |
| 689 | init(16); |
| 690 | int size = Serialization.readCount(stream); |
| 691 | Serialization.populateMap(this, stream, size); |
| 692 | } |
| 693 | |
| 694 | @GwtIncompatible // Not needed in emulated source |
| 695 | private static final long serialVersionUID = 0; |
nothing calls this directly
no test coverage detected