This commit is contained in:
Gary Gregory 2024-06-23 16:10:55 -04:00
parent c3debe88d9
commit 7b3dab2123
1 changed files with 5 additions and 1 deletions

View File

@ -184,7 +184,11 @@ public class IdentityMap<K, V>
} }
/** /**
* Read the map in using a custom routine. * Deserializes an instance from an ObjectInputStream.
*
* @param in The source ObjectInputStream.
* @throws IOException Any of the usual Input/Output related exceptions.
* @throws ClassNotFoundException A class of a serialized object cannot be found.
*/ */
private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException { private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException {
in.defaultReadObject(); in.defaultReadObject();