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 2020/04/02 17:03:18 UTC

[logging-log4j2] branch master updated: Add helpers.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new e2b952e  Add helpers.
e2b952e is described below

commit e2b952ede2a398fc2ad5a257b2c40b76e18a3571
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Apr 2 13:03:12 2020 -0400

    Add helpers.
---
 .../src/test/java/org/apache/logging/log4j/junit/CleanFolders.java    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/log4j-api/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java b/log4j-api/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java
index f66f263..19fe195 100644
--- a/log4j-api/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java
+++ b/log4j-api/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java
@@ -72,6 +72,10 @@ public class CleanFolders extends AbstractExternalFileCleaner {
 		super(before, after, maxTries, null, files);
 	}
 
+    public CleanFolders(final boolean before, final boolean after, final int maxTries, final Path... paths) {
+        super(before, after, maxTries, null, paths);
+    }
+
 	public CleanFolders(final boolean before, final boolean after, final int maxTries, final String... fileNames) {
 		super(before, after, maxTries, null, fileNames);
 	}