You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/03/18 12:59:24 UTC

[commons-compress] branch master updated: Code comments

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 a02fcadc Code comments
a02fcadc is described below

commit a02fcadc4665a03108e1870a8fc1ff7a593f3198
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Mar 18 08:59:19 2023 -0400

    Code comments
---
 .../java/org/apache/commons/compress/harmony/pack200/BcBands.java    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/compress/harmony/pack200/BcBands.java b/src/main/java/org/apache/commons/compress/harmony/pack200/BcBands.java
index 983ecca1..1949e0d6 100644
--- a/src/main/java/org/apache/commons/compress/harmony/pack200/BcBands.java
+++ b/src/main/java/org/apache/commons/compress/harmony/pack200/BcBands.java
@@ -50,7 +50,8 @@ public class BcBands extends BandSet {
     private final IntList bcByte = new IntList();
     private final IntList bcShort = new IntList();
     private final IntList bcLocal = new IntList();
-    // Integers and/or Labels?
+
+    // Integers and Labels
     private final List bcLabel = new ArrayList();
     private final List<CPInt> bcIntref = new ArrayList<>();
     private final List<CPFloat> bcFloatRef = new ArrayList<>();
@@ -62,6 +63,8 @@ public class BcBands extends BandSet {
 
     private final List<CPMethodOrField> bcMethodRef = new ArrayList<>();
     private final List<CPMethodOrField> bcIMethodRef = new ArrayList<>();
+    
+    // Integers and CPMethodOrField
     private List bcThisField = new ArrayList<>();
 
     private final List bcSuperField = new ArrayList<>();