You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rp...@apache.org on 2016/09/11 17:05:15 UTC

[2/7] logging-log4j2 git commit: removed trailing whitespace

removed trailing whitespace


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

Branch: refs/heads/master
Commit: c91b6765f4c829a18fc64f1c613516d87db63dba
Parents: 1c39983
Author: rpopma <rp...@apache.org>
Authored: Mon Sep 12 01:05:19 2016 +0900
Committer: rpopma <rp...@apache.org>
Committed: Mon Sep 12 01:05:19 2016 +0900

----------------------------------------------------------------------
 .../logging/log4j/core/async/AsyncLoggerConfigTest.java      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/c91b6765/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java
index e4b63dc..dc2d793 100644
--- a/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java
+++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java
@@ -48,7 +48,7 @@ public class AsyncLoggerConfigTest {
         final String msg = "Additive logging: 2 for the price of 1!";
         log.info(msg);
         CoreLoggerContexts.stopLoggerContext(file); // stop async thread
-        
+
         final BufferedReader reader = new BufferedReader(new FileReader(file));
         final String line1 = reader.readLine();
         final String line2 = reader.readLine();
@@ -62,15 +62,15 @@ public class AsyncLoggerConfigTest {
         final String location = "testAdditivity";
         assertTrue("location", line1.contains(location) || line2.contains(location));
     }
-    
+
     @Test
     public void testIncludeLocationDefaultsToFalse() {
-    	final LoggerConfig rootLoggerConfig = 
+    	final LoggerConfig rootLoggerConfig =
     			AsyncLoggerConfig.RootLogger.createLogger(
     					null, "INFO", null, new AppenderRef[0], null, new DefaultConfiguration(), null);
     	assertFalse("Include location should default to false for async logggers",
     			    rootLoggerConfig.isIncludeLocation());
-    	
+
     	final LoggerConfig loggerConfig =
     	        AsyncLoggerConfig.createLogger(
     	        		null, "INFO", "com.foo.Bar", null, new AppenderRef[0], null, new DefaultConfiguration(),