You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2020/12/07 16:36:51 UTC

[logging-log4j2] branch release-2.x updated: Better param name.

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

ggregory pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/release-2.x by this push:
     new ed43553  Better param name.
ed43553 is described below

commit ed4355329f3598a3e52c619a7a88e17db989c58a
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 7 11:36:47 2020 -0500

    Better param name.
---
 .../org/apache/logging/log4j/util/FilteredObjectInputStream.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/util/FilteredObjectInputStream.java b/log4j-api/src/main/java/org/apache/logging/log4j/util/FilteredObjectInputStream.java
index 460ecd0..8fcc7b4 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/FilteredObjectInputStream.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/FilteredObjectInputStream.java
@@ -55,8 +55,8 @@ public class FilteredObjectInputStream extends ObjectInputStream {
         this.allowedExtraClasses = new HashSet<>();
     }
 
-    public FilteredObjectInputStream(final InputStream in) throws IOException {
-        super(in);
+    public FilteredObjectInputStream(final InputStream inputStream) throws IOException {
+        super(inputStream);
         this.allowedExtraClasses = new HashSet<>();
     }
 
@@ -64,8 +64,8 @@ public class FilteredObjectInputStream extends ObjectInputStream {
         this.allowedExtraClasses = allowedClasses;
     }
 
-    public FilteredObjectInputStream(final InputStream in, final Collection<String> allowedClasses) throws IOException {
-        super(in);
+    public FilteredObjectInputStream(final InputStream inputStream, final Collection<String> allowedClasses) throws IOException {
+        super(inputStream);
         this.allowedExtraClasses = allowedClasses;
     }