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 d93aff59c Checkstyle d93aff59c is described below commit d93aff59c1aa8269ef4a15c44cb3a0e2be6a9f93 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Mon Sep 8 08:36:28 2025 -0700 Checkstyle --- src/main/java/org/apache/commons/io/input/BoundedInputStream.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/io/input/BoundedInputStream.java b/src/main/java/org/apache/commons/io/input/BoundedInputStream.java index 92b5dbbd4..0d34a6052 100644 --- a/src/main/java/org/apache/commons/io/input/BoundedInputStream.java +++ b/src/main/java/org/apache/commons/io/input/BoundedInputStream.java @@ -156,7 +156,8 @@ public T setMaxCount(final long maxCount) { /** * Sets the default {@link BoundedInputStream#onMaxLength(long, long)} behavior, {@code null} resets to a NOOP. * <p> - * The first Long is the number of bytes remaining to read before the maximum is reached count of bytes to read. The second Long is the count of bytes read. + * The first Long is the number of bytes remaining to read before the maximum is reached count of bytes to read. The second Long is the count of bytes + * read. * </p> * <p> * This does <em>not</em> override a {@code BoundedInputStream} subclass' implementation of the {@link BoundedInputStream#onMaxLength(long, long)}