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 24b54c8a Javadoc 24b54c8a is described below commit 24b54c8af015d16f701ecf52f0d1995953d5d4e0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Oct 19 07:28:24 2023 -0400 Javadoc --- .../java/org/apache/commons/compress/harmony/unpack200/CpBands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/harmony/unpack200/CpBands.java b/src/main/java/org/apache/commons/compress/harmony/unpack200/CpBands.java index ed11c3d4..9a429549 100644 --- a/src/main/java/org/apache/commons/compress/harmony/unpack200/CpBands.java +++ b/src/main/java/org/apache/commons/compress/harmony/unpack200/CpBands.java @@ -462,7 +462,7 @@ public class CpBands extends BandSet { /** * Parses the constant pool signature classes, using {@link #cpSignatureCount} to populate {@link #cpSignature}. A * signature form is akin to the bytecode representation of a class; Z for boolean, I for int, [ for array etc. - * However, although classes are started with L, the classname does not follow the form; instead, there is a + * However, although classes are started with L, the class name does not follow the form; instead, there is a * separate array of classes. So an array corresponding to {@code public static void main(String args[])} has a * form of {@code [L(V)} and a classes array of {@code [java.lang.String]}. The {@link #cpSignature} is a * string representation identical to the bytecode equivalent {@code [Ljava/lang/String;(V)} TODO Check that