You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/05/11 11:35:48 UTC

[commons-io] branch master updated: Format tweak.

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-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 0a97403d Format tweak.
0a97403d is described below

commit 0a97403d5e2fd5e836d1b241555ab062fdd7492c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed May 11 07:35:37 2022 -0400

    Format tweak.
---
 src/test/java/org/apache/commons/io/function/IOConsumerTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/function/IOConsumerTest.java b/src/test/java/org/apache/commons/io/function/IOConsumerTest.java
index 77fa5e50..4b557c14 100644
--- a/src/test/java/org/apache/commons/io/function/IOConsumerTest.java
+++ b/src/test/java/org/apache/commons/io/function/IOConsumerTest.java
@@ -39,6 +39,6 @@ public class IOConsumerTest {
         assertDoesNotThrow(() -> IOUtils.close(nullCloseable, noopConsumer));
         assertDoesNotThrow(() -> IOUtils.close(new StringReader("s"), noopConsumer));
         assertDoesNotThrow(() -> IOUtils.close(new ThrowOnCloseReader(new StringReader("s")), noopConsumer));
-
     }
+
 }