From 38963b1de845d8893799b8aea6adf41bda796971 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 23 Jun 2024 18:50:46 -0400 Subject: [PATCH] Javadoc --- .../collections4/trie/AbstractPatriciaTrie.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java b/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java index bc793f042d..85af6136f0 100644 --- a/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java +++ b/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java @@ -2435,12 +2435,12 @@ public Collection values() { * @param out the target ObjectOutputStream. * @throws IOException thrown when an I/O errors occur writing to the target stream. */ - private void writeObject(final ObjectOutputStream stream) throws IOException { - stream.defaultWriteObject(); - stream.writeInt(this.size()); + private void writeObject(final ObjectOutputStream out) throws IOException { + out.defaultWriteObject(); + out.writeInt(this.size()); for (final Entry entry : entrySet()) { - stream.writeObject(entry.getKey()); - stream.writeObject(entry.getValue()); + out.writeObject(entry.getKey()); + out.writeObject(entry.getValue()); } }