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 <garydgreg...@gmail.com> Authored: Tue Sep 9 11:00:51 2014 -0400 Committer: Gary Gregory <garydgreg...@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