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 ca48e85ff Add WhitespaceAfter and WhitespaceAround
ca48e85ff is described below

commit ca48e85ff52d9fe8879266af2589f5d849f8b6b8
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 4 15:40:58 2024 -0400

    Add WhitespaceAfter and WhitespaceAround
---
 src/conf/checkstyle.xml                                                 | 2 ++
 .../commons/compress/archivers/dump/DumpArchiveInputStreamTest.java     | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml
index f49489e08..66c53b64e 100644
--- a/src/conf/checkstyle.xml
+++ b/src/conf/checkstyle.xml
@@ -56,6 +56,8 @@ limitations under the License.
       <property name="ordered" value="true" />
       <property name="separated" value="true" />
     </module>
+    <module name="WhitespaceAfter" />
+    <module name="WhitespaceAround" />
     <module name="WhitespaceAroundCheck" />
   </module>
   <module name="LineLength">
diff --git 
a/src/test/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStreamTest.java
 
b/src/test/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStreamTest.java
index 5b158c54c..ee0d1b26a 100644
--- 
a/src/test/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStreamTest.java
+++ 
b/src/test/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStreamTest.java
@@ -71,7 +71,7 @@ public class DumpArchiveInputStreamTest extends AbstractTest {
     }
 
     @Test
-    @Timeout(value = 15,unit = TimeUnit.SECONDS, threadMode = 
ThreadMode.SEPARATE_THREAD)
+    @Timeout(value = 15, unit = TimeUnit.SECONDS, threadMode = 
ThreadMode.SEPARATE_THREAD)
     public void testLoopingInodes() throws Exception {
         try (InputStream is = 
newInputStream("org/apache/commons/compress/dump/looping_inodes-fail.dump");
                 DumpArchiveInputStream archive = new 
DumpArchiveInputStream(is)) {

Reply via email to