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 2e6c166f8c231bf320cc9175bd09505dc016e251 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Feb 5 10:37:14 2024 -0500 Checkstyle --- .../java/org/apache/commons/compress/harmony/pack200/Codec.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/harmony/pack200/Codec.java b/src/main/java/org/apache/commons/compress/harmony/pack200/Codec.java index 406d8f07e..e630887e5 100644 --- a/src/main/java/org/apache/commons/compress/harmony/pack200/Codec.java +++ b/src/main/java/org/apache/commons/compress/harmony/pack200/Codec.java @@ -80,7 +80,8 @@ public abstract class Codec { public int lastBandLength; /** - * Decodes a sequence of bytes from the given input stream, returning the value as a long. Note that this method can only be applied for non-delta encodings. + * Decodes a sequence of bytes from the given input stream, returning the value as a long. Note that this method can only be applied for non-delta + * encodings. * * @param in the input stream to read from * @return the value as a long @@ -90,9 +91,9 @@ public abstract class Codec { public abstract int decode(InputStream in) throws IOException, Pack200Exception; /** - * Decodes a sequence of bytes from the given input stream, returning the value as a long. If this encoding is a delta encoding (d=1) then the previous value - * must be passed in as a parameter. If it is a non-delta encoding, then it does not matter what value is passed in, so it makes sense for the value to be - * passed in by default using code similar to: + * Decodes a sequence of bytes from the given input stream, returning the value as a long. If this encoding is a delta encoding (d=1) then the previous + * value must be passed in as a parameter. If it is a non-delta encoding, then it does not matter what value is passed in, so it makes sense for the value + * to be passed in by default using code similar to: * * <pre> * long last = 0;