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/commons-compress.git
The following commit(s) were added to refs/heads/master by this push:
new 057ead0e Javadoc
057ead0e is described below
commit 057ead0e0777da070c91ace961d4f5eec07c8310
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Nov 1 14:28:47 2023 -0400
Javadoc
---
src/test/java/org/apache/commons/compress/AbstractTestCase.java | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/src/test/java/org/apache/commons/compress/AbstractTestCase.java
b/src/test/java/org/apache/commons/compress/AbstractTestCase.java
index 6b4f9397..5a82f188 100644
--- a/src/test/java/org/apache/commons/compress/AbstractTestCase.java
+++ b/src/test/java/org/apache/commons/compress/AbstractTestCase.java
@@ -32,7 +32,6 @@ import java.net.URISyntaxException;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
-import java.time.Duration;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
@@ -43,8 +42,6 @@ import
org.apache.commons.compress.archivers.ArchiveOutputStream;
import org.apache.commons.compress.archivers.ArchiveStreamFactory;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
-import org.apache.commons.lang3.SystemUtils;
-import org.apache.commons.lang3.ThreadUtils;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
@@ -112,9 +109,11 @@ public abstract class AbstractTestCase {
protected File resultDir;
- private Path archive; // used to delete the archive in tearDown
+ /** Used to delete the archive in {@link #tearDown()}. */
+ private Path archive;
- protected List<String> archiveList; // Lists the content of the archive as
originally created
+ /** Lists the content of the archive as originally created. */
+ protected List<String> archiveList;
protected final ArchiveStreamFactory factory =
ArchiveStreamFactory.DEFAULT;