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 94f0f788 Javadoc 94f0f788 is described below commit 94f0f7880b9ea9b3e5221db4f34b139bf544b907 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Tue Jun 21 13:49:16 2022 -0400 Javadoc --- src/main/java/org/apache/commons/io/IOUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/org/apache/commons/io/IOUtils.java b/src/main/java/org/apache/commons/io/IOUtils.java index 7ac55595..b923b44b 100644 --- a/src/main/java/org/apache/commons/io/IOUtils.java +++ b/src/main/java/org/apache/commons/io/IOUtils.java @@ -475,6 +475,8 @@ public class IOUtils { /** * Avoids the need to type cast. + * + * @param closeable the object to close, may be null */ private static void closeQ(final Closeable closeable) { closeQuietly(closeable, null);