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
commit ecde1877108a7d27aeb40d537b65f4592f0e1e54 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Mon Jul 25 15:51:06 2022 -0400 Add missing test in IOUtils --- src/test/java/org/apache/commons/io/IOUtilsTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/java/org/apache/commons/io/IOUtilsTest.java b/src/test/java/org/apache/commons/io/IOUtilsTest.java index 9683f9c8..9623fa8f 100644 --- a/src/test/java/org/apache/commons/io/IOUtilsTest.java +++ b/src/test/java/org/apache/commons/io/IOUtilsTest.java @@ -348,6 +348,7 @@ public class IOUtilsTest { assertDoesNotThrow(() -> IOUtils.closeQuietly(closeable, null, closeable)); assertDoesNotThrow(() -> IOUtils.closeQuietly(Arrays.asList(closeable, null, closeable))); assertDoesNotThrow(() -> IOUtils.closeQuietly(Stream.of(closeable, null, closeable))); + assertDoesNotThrow(() -> IOUtils.closeQuietly((Iterable<Closeable>) null)); } @Test