Repository: logging-log4j2
Updated Branches:
  refs/heads/master a21b062b8 -> f892f849e


Use final.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/f892f849
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/f892f849
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/f892f849

Branch: refs/heads/master
Commit: f892f849e72d59e74f0999d86b8b0fdf54efc218
Parents: a21b062
Author: Gary Gregory <[email protected]>
Authored: Tue Sep 2 23:22:33 2014 -0400
Committer: Gary Gregory <[email protected]>
Committed: Tue Sep 2 23:22:33 2014 -0400

----------------------------------------------------------------------
 .../java/org/apache/logging/log4j/streams/LoggerPrintStream.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f892f849/log4j-streams/src/main/java/org/apache/logging/log4j/streams/LoggerPrintStream.java
----------------------------------------------------------------------
diff --git 
a/log4j-streams/src/main/java/org/apache/logging/log4j/streams/LoggerPrintStream.java
 
b/log4j-streams/src/main/java/org/apache/logging/log4j/streams/LoggerPrintStream.java
index 246fab5..2deefdb 100644
--- 
a/log4j-streams/src/main/java/org/apache/logging/log4j/streams/LoggerPrintStream.java
+++ 
b/log4j-streams/src/main/java/org/apache/logging/log4j/streams/LoggerPrintStream.java
@@ -37,8 +37,8 @@ import org.apache.logging.log4j.spi.ExtendedLogger;
 public class LoggerPrintStream extends PrintStream {
     private static final String FQCN = LoggerPrintStream.class.getName();
 
-    public LoggerPrintStream(ExtendedLogger logger, boolean autoFlush, Charset 
charset, String fqcn, Level level,
-            Marker marker) throws UnsupportedEncodingException {
+    public LoggerPrintStream(final ExtendedLogger logger, final boolean 
autoFlush, final Charset charset,
+            final String fqcn, final Level level, final Marker marker) throws 
UnsupportedEncodingException {
         super(new LoggerOutputStream(logger, level, marker, charset, fqcn), 
autoFlush, charset.name());
     }
 

Reply via email to