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/11/30 12:09:50 UTC

[commons-compress] 01/02: Use Javadoc format

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

commit ab7a76263db14978e2b6f4160739dc35f186b920
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Nov 30 07:07:25 2022 -0500

    Use Javadoc format
---
 .../commons/compress/harmony/unpack200/AttributeLayoutMap.java   | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/compress/harmony/unpack200/AttributeLayoutMap.java b/src/main/java/org/apache/commons/compress/harmony/unpack200/AttributeLayoutMap.java
index 4c2d6ed4..ae838e92 100644
--- a/src/main/java/org/apache/commons/compress/harmony/unpack200/AttributeLayoutMap.java
+++ b/src/main/java/org/apache/commons/compress/harmony/unpack200/AttributeLayoutMap.java
@@ -125,10 +125,11 @@ public class AttributeLayoutMap {
     private final Map<Integer, AttributeLayout> methodLayouts = new HashMap<>();
     private final Map<Integer, AttributeLayout> codeLayouts = new HashMap<>();
 
-    // The order of the maps in this array should not be changed as their
-    // indices correspond to
-    // the value of their context constants (AttributeLayout.CONTEXT_CLASS etc.)
-	private final Map[] layouts = { classLayouts, fieldLayouts, methodLayouts, codeLayouts };
+    /**
+     * The order of the maps in this array should not be changed as their indices correspond to the value of their context constants
+     * (AttributeLayout.CONTEXT_CLASS etc.)
+     */
+    private final Map[] layouts = { classLayouts, fieldLayouts, methodLayouts, codeLayouts };
 
     private final Map<AttributeLayout, NewAttributeBands> layoutsToBands = new HashMap<>();