Repository: logging-log4j2 Updated Branches: refs/heads/master 4462ae869 -> 083a4ebc5
Simpler implementation. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/083a4ebc Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/083a4ebc Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/083a4ebc Branch: refs/heads/master Commit: 083a4ebc5b914e0da9ef151e829caafd028dcf3a Parents: 4462ae8 Author: Gary Gregory <ggreg...@apache.org> Authored: Tue Jun 28 12:31:37 2016 -0700 Committer: Gary Gregory <ggreg...@apache.org> Committed: Tue Jun 28 12:31:37 2016 -0700 ---------------------------------------------------------------------- .../test/java/org/apache/logging/log4j/junit/CleanFiles.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/083a4ebc/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java b/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java index de370f8..07f7cd7 100644 --- a/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java +++ b/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java @@ -16,9 +16,10 @@ */ package org.apache.logging.log4j.junit; +import static org.junit.Assert.fail; + import java.io.File; import java.io.IOException; -import java.nio.file.FileSystems; import java.nio.file.Files; import java.util.ArrayList; import java.util.Arrays; @@ -26,8 +27,6 @@ import java.util.List; import org.junit.rules.ExternalResource; -import static org.junit.Assert.*; - /** * A JUnit test rule to automatically delete files after a test is run. */