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 cb3c3409c Fix Javadoc typo
cb3c3409c is described below

commit cb3c3409cb49d0ec1339d0df24b5bee627b67a50
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Apr 7 08:13:01 2026 -0400

    Fix Javadoc typo
    
    Remove blank Javadoc lines
---
 .../commons/compress/utils/FixedLengthBlockOutputStream.java  | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java
 
b/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java
index 7a526e060..dfe8d19f7 100644
--- 
a/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java
+++ 
b/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java
@@ -32,20 +32,17 @@
 /**
  * This class supports writing to an OutputStream or WritableByteChannel in 
fixed length blocks.
  * <p>
- * It can be used to support output to devices such as tape drives that 
require output in this format. If the final block does not have enough content 
to
- * fill an entire block, the output will be padded to a full block size.
+ * It can be used to support output to devices such as tape drives that 
require output in this format. If the final block does not have enough content 
to fill
+ * an entire block, the output will be padded to a full block size.
  * </p>
- *
  * <p>
- * This class can be used to support TAR,PAX, and CPIO blocked output to 
character special devices. It is not recommended that this class be used unless 
writing
- * to such devices, as the padding serves no useful purpose in such cases.
+ * This class can be used to support TAR, PAX, and CPIO blocked output to 
character special devices. It is not recommended that this class be used unless
+ * writing to such devices, as the padding serves no useful purpose in such 
cases.
  * </p>
- *
  * <p>
  * This class should normally wrap a FileOutputStream or associated 
WritableByteChannel directly. If there is an intervening filter that modified 
the output,
  * such as a CompressorOutputStream, or performs its own buffering, such as 
BufferedOutputStream, output to the device may no longer be of the specified 
size.
  * </p>
- *
  * <p>
  * Any content written to this stream should be self-delimiting and should 
tolerate any padding added to fill the last block.
  * </p>

Reply via email to