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 22f071be Inline comments
22f071be is described below

commit 22f071befee755f50849687e93b94f5eefca2abc
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 31 07:21:39 2023 -0400

    Inline comments
---
 .../compress/compressors/bzip2/BZip2CompressorOutputStream.java   | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java
 
b/src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java
index 1c6de7e9..20312aae 100644
--- 
a/src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java
+++ 
b/src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java
@@ -859,12 +859,10 @@ public class BZip2CompressorOutputStream extends 
CompressorOutputStream
             nSelectors = 0;
 
             for (int gs = 0; gs < this.nMTF;) {
-                /* Set group start & end marks. */
+                // Set group start & end marks.
 
-                /*
-                 * Calculate the cost of this group as coded by each of the
-                 * coding tables.
-                 */
+                // Calculate the cost of this group as coded by each of the
+                // coding tables.
 
                 final int ge = Math.min(gs + G_SIZE - 1, nMTFShadow - 1);
 

Reply via email to