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

commit f3f1b23484f0e55cbc28981d8172cdf8ce4aad0d
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Feb 5 09:30:02 2024 -0500

    Javadoc
---
 src/main/java/org/apache/commons/compress/harmony/pack200/Codec.java | 4 ++--
 1 file changed, 2 insertions(+), 2 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 935b2e3be..406d8f07e 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,7 @@ public abstract class Codec {
     public int lastBandLength;
 
     /**
-     * Decode 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,7 +90,7 @@ public abstract class Codec {
     public abstract int decode(InputStream in) throws IOException, 
Pack200Exception;
 
     /**
-     * Decode 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
+     * 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:
      *

Reply via email to