Repository: logging-log4j2 Updated Branches: refs/heads/master 9972ee5f8 -> 2d40959a1
Remove unused method. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/2d40959a Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/2d40959a Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/2d40959a Branch: refs/heads/master Commit: 2d40959a1ee273bc6e30fe62d1f8f4fe89fe3732 Parents: 9972ee5 Author: ggregory <[email protected]> Authored: Tue Aug 9 10:21:15 2016 -0700 Committer: ggregory <[email protected]> Committed: Tue Aug 9 10:21:15 2016 -0700 ---------------------------------------------------------------------- .../config/plugins/util/PluginManagerPackagesTest.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/2d40959a/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java index 2ebefe0..5808b10 100644 --- a/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java +++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/config/plugins/util/PluginManagerPackagesTest.java @@ -16,6 +16,9 @@ */ package org.apache.logging.log4j.core.config.plugins.util; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + import java.io.File; import java.io.IOException; import java.util.ArrayList; @@ -39,20 +42,13 @@ import org.apache.logging.log4j.core.config.Configurator; import org.apache.logging.log4j.status.StatusLogger; import org.apache.logging.log4j.test.appender.ListAppender; import org.junit.AfterClass; -import org.junit.BeforeClass; import org.junit.Test; -import static org.junit.Assert.*; - public class PluginManagerPackagesTest { private static Configuration config; private static ListAppender listAppender; private static LoggerContext ctx; - @BeforeClass - public static void setupClass() { - } - @AfterClass public static void cleanupClass() { System.clearProperty(ConfigurationFactory.CONFIGURATION_FILE_PROPERTY);
