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 1887b3da1 Javadoc 1887b3da1 is described below commit 1887b3da14a9fdb5a29de3176de7b19d4885d9b3 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Feb 1 20:39:11 2024 -0500 Javadoc --- src/test/java/org/apache/commons/compress/archivers/ListerTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/java/org/apache/commons/compress/archivers/ListerTest.java b/src/test/java/org/apache/commons/compress/archivers/ListerTest.java index ba0f40808..2a8c4e299 100644 --- a/src/test/java/org/apache/commons/compress/archivers/ListerTest.java +++ b/src/test/java/org/apache/commons/compress/archivers/ListerTest.java @@ -31,6 +31,9 @@ import org.junit.jupiter.params.provider.MethodSource; public class ListerTest { + /** + * Creates a stream of paths of test fixtures with file names that don't end with "-fail" for specific file extensions. + */ public static Stream<Path> getFixtures() throws IOException { return PathUtils.walk(Paths.get("src/test/resources"), new RegexFileFilter("^(?!.*(-fail)).*\\.(tar|ar|arj|apk|dump)$"), 10, false); }