Javadoc
This commit is contained in:
parent
41f0521bda
commit
04fe0aa3b6
|
@ -102,7 +102,12 @@ public class DualLinkedHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> imple
|
||||||
putAll(map);
|
putAll(map);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Serialization
|
/**
|
||||||
|
* 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 {
|
private void writeObject(final ObjectOutputStream out) throws IOException {
|
||||||
out.defaultWriteObject();
|
out.defaultWriteObject();
|
||||||
out.writeObject(normalMap);
|
out.writeObject(normalMap);
|
||||||
|
|
Loading…
Reference in New Issue