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 b8ce4932 Javadoc b8ce4932 is described below commit b8ce4932b937fdf27e72919be937f3c8942bd8d8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 08:59:04 2023 -0400 Javadoc --- .../commons/compress/archivers/examples/CloseableConsumer.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/examples/CloseableConsumer.java b/src/main/java/org/apache/commons/compress/archivers/examples/CloseableConsumer.java index 9a876b69..e19e0231 100644 --- a/src/main/java/org/apache/commons/compress/archivers/examples/CloseableConsumer.java +++ b/src/main/java/org/apache/commons/compress/archivers/examples/CloseableConsumer.java @@ -31,18 +31,19 @@ import java.io.IOException; * @since 1.19 */ public interface CloseableConsumer { + /** * Closes the passed in Closeable immediately. */ CloseableConsumer CLOSING_CONSUMER = Closeable::close; /** - * Completely ignores the passed in Closeable. + * Ignores the passed in Closeable. */ CloseableConsumer NULL_CONSUMER = c -> { }; /** - * Callback that is informed about a closable resource that has + * Callback that is informed about a Closeable resource that has * been wrapped around a passed in stream or channel by Expander * or Archiver when Expander or Archiver no longer need them. *