You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2014/09/14 08:56:52 UTC

[3/3] git commit: Remove unused field.

Remove unused field.


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

Branch: refs/heads/master
Commit: b257c78af571a05d77143d537068ae3c45f0a959
Parents: 0a68b8c
Author: Matt Sicker <ma...@apache.org>
Authored: Sun Sep 14 01:52:29 2014 -0500
Committer: Matt Sicker <ma...@apache.org>
Committed: Sun Sep 14 01:52:29 2014 -0500

----------------------------------------------------------------------
 .../org/apache/logging/log4j/simple/SimpleLoggerContext.java   | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/b257c78a/log4j-api/src/main/java/org/apache/logging/log4j/simple/SimpleLoggerContext.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/simple/SimpleLoggerContext.java b/log4j-api/src/main/java/org/apache/logging/log4j/simple/SimpleLoggerContext.java
index d001ea2..e8a4cc6 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/simple/SimpleLoggerContext.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/simple/SimpleLoggerContext.java
@@ -19,15 +19,14 @@ package org.apache.logging.log4j.simple;
 import java.io.FileNotFoundException;
 import java.io.FileOutputStream;
 import java.io.PrintStream;
-import java.util.Properties;
 import java.util.concurrent.ConcurrentHashMap;
 import java.util.concurrent.ConcurrentMap;
 
 import org.apache.logging.log4j.Level;
 import org.apache.logging.log4j.message.MessageFactory;
 import org.apache.logging.log4j.spi.AbstractLogger;
-import org.apache.logging.log4j.spi.LoggerContext;
 import org.apache.logging.log4j.spi.ExtendedLogger;
+import org.apache.logging.log4j.spi.LoggerContext;
 import org.apache.logging.log4j.util.PropertiesUtil;
 
 /**
@@ -41,9 +40,6 @@ public class SimpleLoggerContext implements LoggerContext {
     /** All system properties used by <code>SimpleLog</code> start with this */
     protected static final String SYSTEM_PREFIX = "org.apache.logging.log4j.simplelog.";
 
-    /** Properties loaded from simplelog.properties */
-    private final Properties simpleLogProps = new Properties();
-
     private final PropertiesUtil props;
 
     /** Include the instance name in the log message? */