From 8044ecb3104524a6046d5d10361c337bea16d9d8 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 23 Jun 2024 17:41:41 -0400 Subject: [PATCH] Match param and Javadoc --- .../commons/collections4/bidimap/TreeBidiMap.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/bidimap/TreeBidiMap.java b/src/main/java/org/apache/commons/collections4/bidimap/TreeBidiMap.java index 2697fa165f..13a3c2aa11 100644 --- a/src/main/java/org/apache/commons/collections4/bidimap/TreeBidiMap.java +++ b/src/main/java/org/apache/commons/collections4/bidimap/TreeBidiMap.java @@ -2224,12 +2224,12 @@ public Set 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()); } }