This commit is contained in:
Gary Gregory 2024-06-23 16:34:38 -04:00
parent d23e7f6249
commit aa86cdaafd
1 changed files with 6 additions and 0 deletions

View File

@ -130,6 +130,12 @@ public class HashSetValuedHashMap<K, V> extends AbstractSetValuedMap<K, V>
doReadObject(in);
}
/**
* Serializes this object to an ObjectOutputStream.
*
* @param out the target ObjectOutputStream.
* @throws IOException thrown when an I/O errors occur writing to the target stream.
*/
private void writeObject(final ObjectOutputStream out) throws IOException {
out.defaultWriteObject();
doWriteObject(out);