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 c9ba22a2e Normalize Javadoc @param formatting c9ba22a2e is described below commit c9ba22a2e96882795e2c99bf21db41c5cb752a01 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 16 11:52:23 2024 -0400 Normalize Javadoc @param formatting --- .../apache/commons/compress/harmony/pack200/NewAttributeBands.java | 2 +- .../org/apache/commons/compress/harmony/pack200/PackingOptions.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/harmony/pack200/NewAttributeBands.java b/src/main/java/org/apache/commons/compress/harmony/pack200/NewAttributeBands.java index 262b3ea19..c490071f2 100644 --- a/src/main/java/org/apache/commons/compress/harmony/pack200/NewAttributeBands.java +++ b/src/main/java/org/apache/commons/compress/harmony/pack200/NewAttributeBands.java @@ -872,7 +872,7 @@ public class NewAttributeBands extends BandSet { /** * Resolve calls in the attribute layout and returns the number of backwards callables * - * @param tokens - the attribute layout as a List of AttributeElements + * @param tokens the attribute layout as a List of AttributeElements */ private void resolveCalls() { for (int i = 0; i < attributeLayoutElements.size(); i++) { diff --git a/src/main/java/org/apache/commons/compress/harmony/pack200/PackingOptions.java b/src/main/java/org/apache/commons/compress/harmony/pack200/PackingOptions.java index f05d6b99f..6e69d5d9f 100644 --- a/src/main/java/org/apache/commons/compress/harmony/pack200/PackingOptions.java +++ b/src/main/java/org/apache/commons/compress/harmony/pack200/PackingOptions.java @@ -260,7 +260,7 @@ public class PackingOptions { /** * Sets the segment limit (equivalent to -S command line option) * - * @param segmentLimit - the limit in bytes + * @param segmentLimit the limit in bytes */ public void setSegmentLimit(final long segmentLimit) { this.segmentLimit = segmentLimit; @@ -279,7 +279,7 @@ public class PackingOptions { /** * Sets the compressor behavior when an unknown attribute is encountered. * - * @param unknownAttributeAction - the action to perform + * @param unknownAttributeAction the action to perform */ public void setUnknownAttributeAction(final String unknownAttributeAction) { this.unknownAttributeAction = unknownAttributeAction;