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-vfs.git
The following commit(s) were added to refs/heads/master by this push:
new 7b248673 Fix some Checkstyle issues
7b248673 is described below
commit 7b2486737d262676716a9f26f593b7f02ca3f91a
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Oct 11 12:23:27 2023 -0400
Fix some Checkstyle issues
---
.../org/apache/commons/vfs2/ProviderCacheStrategyTests.java | 8 ++++----
.../test/java/org/apache/commons/vfs2/ProviderDeleteTests.java | 10 +++++-----
.../java/org/apache/commons/vfs2/ProviderRandomReadTests.java | 2 +-
.../org/apache/commons/vfs2/ProviderRandomReadWriteTests.java | 2 +-
.../org/apache/commons/vfs2/ProviderRandomSetLengthTests.java | 2 +-
.../test/java/org/apache/commons/vfs2/ProviderReadTests.java | 4 ++--
.../test/java/org/apache/commons/vfs2/ProviderWriteTests.java | 8 ++++----
.../src/test/java/org/apache/commons/vfs2/VfsTestUtils.java | 2 +-
.../vfs2/provider/ftps/NoProtocolSslConfigurationProxy.java | 4 ++--
.../commons/vfs2/provider/http4s/Http4sGetContentInfoTest.java | 2 +-
.../commons/vfs2/provider/http5/Http5FilesCacheTest.java | 2 +-
.../commons/vfs2/provider/http5s/Http5sGetContentInfoTest.java | 2 +-
.../vfs2/provider/https/HttpsGetContentInfoFunctionalTest.java | 2 +-
.../vfs2/provider/local/LocalFileRandomAccessContentTest.java | 2 +-
.../org/apache/commons/vfs2/provider/local/TempFileTests.java | 2 +-
.../commons/vfs2/provider/ram/CustomRamProviderTest.java | 4 ++--
.../commons/vfs2/provider/sftp/SftpPutChannelTestCase.java | 2 +-
.../apache/commons/vfs2/provider/tar/CreateFileSystemTest.java | 2 +-
.../apache/commons/vfs2/provider/tar/TarFileObjectTest.java | 6 +++---
.../apache/commons/vfs2/provider/test/FileObjectSortTest.java | 10 +++++-----
.../org/apache/commons/vfs2/provider/zip/FileLockTest.java | 2 +-
.../apache/commons/vfs2/provider/zip/ZipFileObjectTest.java | 2 +-
.../vfs2/util/DelegatingFileSystemOptionsBuilderTest.java | 2 +-
23 files changed, 42 insertions(+), 42 deletions(-)
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderCacheStrategyTests.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderCacheStrategyTests.java
index 05584964..8e0e3c7d 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderCacheStrategyTests.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderCacheStrategyTests.java
@@ -23,7 +23,7 @@ import org.apache.commons.vfs2.util.FileObjectUtils;
import org.junit.Test;
/**
- * Test the cache strategy
+ * Test the cache strategy.
*/
public class ProviderCacheStrategyTests extends AbstractProviderTestCase {
@@ -54,7 +54,7 @@ public class ProviderCacheStrategyTests extends
AbstractProviderTestCase {
}
/**
- * Test the manual cache strategy
+ * Test the manual cache strategy.
*/
@Test
public void testManualCache() throws Exception {
@@ -88,7 +88,7 @@ public class ProviderCacheStrategyTests extends
AbstractProviderTestCase {
}
/**
- * Test the on_call strategy
+ * Test the on_call strategy.
*/
@Test
public void testOnCallCache() throws Exception {
@@ -118,7 +118,7 @@ public class ProviderCacheStrategyTests extends
AbstractProviderTestCase {
}
/**
- * Test the on_resolve strategy
+ * Test the on_resolve strategy.
*/
@Test
public void testOnResolveCache() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderDeleteTests.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderDeleteTests.java
index 492ef5c0..0fd53449 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderDeleteTests.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderDeleteTests.java
@@ -73,7 +73,7 @@ public class ProviderDeleteTests extends
AbstractProviderTestCase {
}
/**
- * deletes files
+ * deletes files.
*/
@Test
public void testDeleteAllFiles() throws Exception {
@@ -88,7 +88,7 @@ public class ProviderDeleteTests extends
AbstractProviderTestCase {
}
/**
- * deletes a single file
+ * deletes a single file.
*/
@Test
public void testDeleteFile() throws Exception {
@@ -100,7 +100,7 @@ public class ProviderDeleteTests extends
AbstractProviderTestCase {
}
/**
- * deletes the complete structure
+ * deletes the complete structure.
*/
@Test
public void testDeleteFiles() throws Exception {
@@ -110,7 +110,7 @@ public class ProviderDeleteTests extends
AbstractProviderTestCase {
}
/**
- * Deletes a non existent file
+ * Deletes a non existent file.
*/
@Test
public void testDeleteNonExistantFile() throws Exception {
@@ -122,7 +122,7 @@ public class ProviderDeleteTests extends
AbstractProviderTestCase {
}
/**
- * deletes a.txt
+ * deletes a.txt.
*/
@Test
public void testDeleteOneFiles() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomReadTests.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomReadTests.java
index 52a1c605..b2df41f9 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomReadTests.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomReadTests.java
@@ -35,7 +35,7 @@ public class ProviderRandomReadTests extends
AbstractProviderTestCase {
}
/**
- * Read a file
+ * Read a file.
*/
@Test
public void testRandomRead() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomReadWriteTests.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomReadWriteTests.java
index 824af851..3944f21c 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomReadWriteTests.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomReadWriteTests.java
@@ -49,7 +49,7 @@ public class ProviderRandomReadWriteTests extends
AbstractProviderTestCase {
}
/**
- * Writes a file
+ * Writes a file.
*/
@Test
public void testRandomWrite() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomSetLengthTests.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomSetLengthTests.java
index 7af96663..dc1a143d 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomSetLengthTests.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderRandomSetLengthTests.java
@@ -52,7 +52,7 @@ public class ProviderRandomSetLengthTests extends
AbstractProviderTestCase {
}
/**
- * Writes a file
+ * Writes a file.
*/
@Test
public void testRandomSetLength() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderReadTests.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderReadTests.java
index 0e6f92c4..5cd3abc6 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderReadTests.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderReadTests.java
@@ -248,7 +248,7 @@ public class ProviderReadTests extends
AbstractProviderTestCase {
}
/**
- * Tests can read multiple time end of stream of empty file
+ * Tests can read multiple time end of stream of empty file.
*/
@Test
public void testReadEmptyMultipleEOF() throws Exception {
@@ -266,7 +266,7 @@ public class ProviderReadTests extends
AbstractProviderTestCase {
}
/**
- * Tests can read multiple time end of stream
+ * Tests can read multiple time end of stream.
*/
@Test
public void testReadFileEOFMultiple() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderWriteTests.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderWriteTests.java
index 780c2313..213ae9c6 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderWriteTests.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/ProviderWriteTests.java
@@ -276,7 +276,7 @@ public class ProviderWriteTests extends
AbstractProviderTestCase {
*/
/**
- * Tests deletion
+ * Tests deletion.
*/
@Test
public void testDelete() throws Exception {
@@ -323,7 +323,7 @@ public class ProviderWriteTests extends
AbstractProviderTestCase {
}
/**
- * Tests deletion
+ * Tests deletion.
*/
@Test
public void testDeleteAllDescendants() throws Exception {
@@ -370,7 +370,7 @@ public class ProviderWriteTests extends
AbstractProviderTestCase {
}
/**
- * Tests file creation
+ * Tests file creation.
*/
@Test
public void testFileCreate() throws Exception {
@@ -716,7 +716,7 @@ public class ProviderWriteTests extends
AbstractProviderTestCase {
}
/**
- * Tests file write to and from the same file system type
+ * Tests file write to and from the same file system type.
*/
@Test
public void testWriteSameFileSystem() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/VfsTestUtils.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/VfsTestUtils.java
index c260fb13..d2a8ea5d 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/VfsTestUtils.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/VfsTestUtils.java
@@ -141,7 +141,7 @@ public abstract class VfsTestUtils {
}
/**
- * Gets a test resource, and asserts that the resource exists
+ * Gets a test resource, and asserts that the resource exists.
*
* @param name path of the resource, relative to this test's base
directory.
*/
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ftps/NoProtocolSslConfigurationProxy.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ftps/NoProtocolSslConfigurationProxy.java
index 18d4ce09..fde673f3 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ftps/NoProtocolSslConfigurationProxy.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ftps/NoProtocolSslConfigurationProxy.java
@@ -25,9 +25,9 @@ import org.apache.ftpserver.ssl.ClientAuth;
import org.apache.ftpserver.ssl.SslConfiguration;
/**
- * See https://issues.apache.org/jira/browse/FTPSERVER-491
+ * See https://issues.apache.org/jira/browse/FTPSERVER-491.
*
- * See https://issues.apache.org/jira/browse/FTPSERVER-506
+ * See https://issues.apache.org/jira/browse/FTPSERVER-506.
*/
public class NoProtocolSslConfigurationProxy implements SslConfiguration {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http4s/Http4sGetContentInfoTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http4s/Http4sGetContentInfoTest.java
index 6f75be74..4c328716 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http4s/Http4sGetContentInfoTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http4s/Http4sGetContentInfoTest.java
@@ -31,7 +31,7 @@ import
org.apache.commons.vfs2.provider.http4.Http4FileSystemConfigBuilder;
import org.junit.jupiter.api.Test;
/**
- * Tests VFS-427 NPE on Http4FileObject.getContent().getContentInfo()
+ * Tests VFS-427 NPE on Http4FileObject.getContent().getContentInfo().
*/
public class Http4sGetContentInfoTest {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http5/Http5FilesCacheTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http5/Http5FilesCacheTest.java
index c3ad29bb..23004385 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http5/Http5FilesCacheTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http5/Http5FilesCacheTest.java
@@ -30,7 +30,7 @@ import org.junit.jupiter.api.Test;
public class Http5FilesCacheTest {
/**
- * Tests https://issues.apache.org/jira/browse/VFS-426
+ * Tests https://issues.apache.org/jira/browse/VFS-426.
*/
@Test
public void testQueryStringUrls() throws FileSystemException {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http5s/Http5sGetContentInfoTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http5s/Http5sGetContentInfoTest.java
index 7d01a064..c7c80ab3 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http5s/Http5sGetContentInfoTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/http5s/Http5sGetContentInfoTest.java
@@ -37,7 +37,7 @@ import
org.apache.commons.vfs2.provider.http5.Http5FileSystemConfigBuilder;
import org.junit.jupiter.api.Test;
/**
- * Tests VFS-427 NPE on Http5FileObject.getContent().getContentInfo()
+ * Tests VFS-427 NPE on Http5FileObject.getContent().getContentInfo().
*/
public class Http5sGetContentInfoTest {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/https/HttpsGetContentInfoFunctionalTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/https/HttpsGetContentInfoFunctionalTest.java
index 9b1d72a4..bbf6eb9f 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/https/HttpsGetContentInfoFunctionalTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/https/HttpsGetContentInfoFunctionalTest.java
@@ -31,7 +31,7 @@ import
org.apache.commons.vfs2.provider.http.HttpFileSystemConfigBuilder;
import org.junit.jupiter.api.Test;
/**
- * Tests VFS-427 NPE on HttpFileObject.getContent().getContentInfo()
+ * Tests VFS-427 NPE on HttpFileObject.getContent().getContentInfo().
*
* @since 2.1
*/
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/local/LocalFileRandomAccessContentTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/local/LocalFileRandomAccessContentTest.java
index 77708843..4d93b4b6 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/local/LocalFileRandomAccessContentTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/local/LocalFileRandomAccessContentTest.java
@@ -34,7 +34,7 @@ public class LocalFileRandomAccessContentTest {
private final int EOF = -1;
/**
- * test LocalFileRandomAccessContent InputStream read one byte 0xff; see
VFS-624
+ * test LocalFileRandomAccessContent InputStream read one byte 0xff; see
VFS-624.
**/
@Test
public void testInputStreamRead0xff() throws IOException {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/local/TempFileTests.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/local/TempFileTests.java
index 6606c07d..ecbc87f6 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/local/TempFileTests.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/local/TempFileTests.java
@@ -32,7 +32,7 @@ import org.junit.Test;
public class TempFileTests extends AbstractProviderTestCase {
/**
- * https://issues.apache.org/jira/browse/VFS-790
+ * https://issues.apache.org/jira/browse/VFS-790.
*/
@Test
public void testLocalFile() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ram/CustomRamProviderTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ram/CustomRamProviderTest.java
index bd16cd0e..497e4a86 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ram/CustomRamProviderTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ram/CustomRamProviderTest.java
@@ -238,8 +238,7 @@ public class CustomRamProviderTest {
}
/**
- *
- * Checks root folder exists
+ * Checks root folder exists.
*
* @throws FileSystemException
*/
@@ -262,6 +261,7 @@ public class CustomRamProviderTest {
* <p>
* This test is not RamProvider specific but it uses it as a simple
test-bed.
* Verifies VFS-741.
+ * </p>
*/
@Test
public void testSchemePrefix() throws FileSystemException
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/sftp/SftpPutChannelTestCase.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/sftp/SftpPutChannelTestCase.java
index e7b68ca0..aca908a0 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/sftp/SftpPutChannelTestCase.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/sftp/SftpPutChannelTestCase.java
@@ -90,7 +90,7 @@ public class SftpPutChannelTestCase extends
AbstractSftpProviderTestCase {
}
/**
- * Tests SftpFileObject.doGetInputStream return the channel to pool, when
there is an exception
+ * Tests SftpFileObject.doGetInputStream return the channel to pool, when
there is an exception.
*/
@Test
public void testDoGetInputStream() throws Exception {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/tar/CreateFileSystemTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/tar/CreateFileSystemTest.java
index d17c0a36..911fefca 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/tar/CreateFileSystemTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/tar/CreateFileSystemTest.java
@@ -27,7 +27,7 @@ import org.apache.commons.vfs2.VFS;
import org.junit.jupiter.api.Test;
/**
- * test use DefaultFileSystemManager.createFileSystem method to create
tar,tgz,tbz2 file system
+ * test use DefaultFileSystemManager.createFileSystem method to create
tar,tgz,tbz2 file system.
*
* @since 2.7.0
**/
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/tar/TarFileObjectTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/tar/TarFileObjectTest.java
index 0db130bc..50685a25 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/tar/TarFileObjectTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/tar/TarFileObjectTest.java
@@ -50,7 +50,7 @@ public class TarFileObjectTest {
}
/**
- * Test read file with special name in a tar file
+ * Test read file with special name in a tar file.
*/
@Test
public void testReadSpecialNameFileInTarFile() throws FileSystemException {
@@ -59,7 +59,7 @@ public class TarFileObjectTest {
}
/**
- * Test read file with special name in a tbz2 file
+ * Test read file with special name in a tbz2 file.
*/
@Test
public void testReadSpecialNameFileInTbz2File() throws FileSystemException
{
@@ -68,7 +68,7 @@ public class TarFileObjectTest {
}
/**
- * Test read file with special name in a tgz file
+ * Test read file with special name in a tgz file.
*/
@Test
public void testReadSpecialNameFileInTgzFile() throws FileSystemException {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/test/FileObjectSortTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/test/FileObjectSortTest.java
index fc29c13c..e69b1a4f 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/test/FileObjectSortTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/test/FileObjectSortTest.java
@@ -41,13 +41,13 @@ public class FileObjectSortTest {
*/
private static final int SIZE = 100;
- // Consider @Immutable
+ /** Consider @Immutable. */
private static FileSystem vfsFileSystem;
- // Consider @Immutable
+ /** Consider @Immutable */
private static FileObject[] sortedArray;
- // Consider @Immutable
+ /** Consider @Immutable */
private static FileObject[] unSortedArray;
private static FileObject resolveFile(final FileSystem fs, final int i)
throws FileSystemException {
@@ -84,7 +84,7 @@ public class FileObjectSortTest {
}
/**
- * Tests sorting an array
+ * Tests sorting an array.
*/
@Test
public void testSortArrayMoveAll() {
@@ -105,7 +105,7 @@ public class FileObjectSortTest {
}
/**
- * Tests sorting a list
+ * Tests sorting a list.
*/
@Test
public void testSortListMoveAll() {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/zip/FileLockTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/zip/FileLockTest.java
index b6dace0e..dab551b7 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/zip/FileLockTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/zip/FileLockTest.java
@@ -39,7 +39,7 @@ import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
/**
- * Tests https://issues.apache.org/jira/browse/VFS-291
+ * Tests https://issues.apache.org/jira/browse/VFS-291.
*/
public class FileLockTest {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/zip/ZipFileObjectTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/zip/ZipFileObjectTest.java
index 435704f3..0ec79c43 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/zip/ZipFileObjectTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/zip/ZipFileObjectTest.java
@@ -166,7 +166,7 @@ public class ZipFileObjectTest {
}
/**
- * Test read file with special name in a ZIP file
+ * Test read file with special name in a ZIP file.
*/
@Test
public void testReadSpecialNameFileInZipFile() throws FileSystemException {
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilderTest.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilderTest.java
index ecdab8d7..291e1635 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilderTest.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilderTest.java
@@ -36,7 +36,7 @@ import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
/**
- * Some tests for the DelegatingFileSystemOptionsBuilder
+ * Tests {@link DelegatingFileSystemOptionsBuilder}.
*/
public class DelegatingFileSystemOptionsBuilderTest {