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 2014/09/09 17:00:54 UTC

git commit: [LOG4J2-800] All life cycle implementations should be serializable. Format tweak.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master ade0e320f -> eb1df23c9


[LOG4J2-800] All life cycle implementations should be serializable.
Format tweak.

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

Branch: refs/heads/master
Commit: eb1df23c9306a303a3f0a475a2f6b06b093d9753
Parents: ade0e32
Author: Gary Gregory <ga...@gmail.com>
Authored: Tue Sep 9 11:00:51 2014 -0400
Committer: Gary Gregory <ga...@gmail.com>
Committed: Tue Sep 9 11:00:51 2014 -0400

----------------------------------------------------------------------
 .../logging/log4j/core/filter/DynamicThresholdFilterTest.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/eb1df23c/log4j-core/src/test/java/org/apache/logging/log4j/core/filter/DynamicThresholdFilterTest.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/filter/DynamicThresholdFilterTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/filter/DynamicThresholdFilterTest.java
index 83234ef..8ef6b3e 100644
--- a/log4j-core/src/test/java/org/apache/logging/log4j/core/filter/DynamicThresholdFilterTest.java
+++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/filter/DynamicThresholdFilterTest.java
@@ -49,14 +49,14 @@ public class DynamicThresholdFilterTest extends AbstractSerializationTest {
         final KeyValuePair[] pairs = new KeyValuePair[] {
                 new KeyValuePair("testuser", "DEBUG"),
                 new KeyValuePair("JohnDoe", "warn") };
+        // @formatter:off
         return new Serializable[] {
-// @formatter:off
                 DynamicThresholdFilter.createFilter("userid", new KeyValuePair[0], Level.ERROR,
                 null, null),
                 DynamicThresholdFilter.createFilter("userid", pairs, Level.ERROR,
                 null, null)
-                // @formatter:on
         };
+        // @formatter:on
     }
 
     @After