This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new 38963b1de Javadoc
38963b1de is described below

commit 38963b1de845d8893799b8aea6adf41bda796971
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 23 18:50:46 2024 -0400

    Javadoc
---
 .../apache/commons/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 bc793f042..85af6136f 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 abstract class AbstractPatriciaTrie<K, V> 
extends AbstractBitwiseTrie<K,
      * @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<K, V> entry : entrySet()) {
-            stream.writeObject(entry.getKey());
-            stream.writeObject(entry.getValue());
+            out.writeObject(entry.getKey());
+            out.writeObject(entry.getValue());
         }
     }
 

Reply via email to