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 2022/12/08 01:27:40 UTC

[commons-compress] branch master updated: Javadoc

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 e08dca1f Javadoc
e08dca1f is described below

commit e08dca1f0e26f3cd9b00dc30c6d0b1dff2e30811
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Dec 7 20:27:36 2022 -0500

    Javadoc
---
 src/main/java/org/apache/commons/compress/harmony/pack200/Segment.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/compress/harmony/pack200/Segment.java b/src/main/java/org/apache/commons/compress/harmony/pack200/Segment.java
index 95f61d07..72273055 100644
--- a/src/main/java/org/apache/commons/compress/harmony/pack200/Segment.java
+++ b/src/main/java/org/apache/commons/compress/harmony/pack200/Segment.java
@@ -40,7 +40,8 @@ import org.objectweb.asm.Type;
  */
 public class Segment extends ClassVisitor {
 
-    public static int ASM_API = Opcodes.ASM4; /* see https://asm.ow2.io/javadoc/org/objectweb/asm/Opcodes.html#ASM4 */
+    /** See https://asm.ow2.io/javadoc/org/objectweb/asm/Opcodes.html#ASM4 */
+    public static int ASM_API = Opcodes.ASM4;
 
     public Segment() {
         super(ASM_API);