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-fileupload.git
The following commit(s) were added to refs/heads/master by this push: new 1affd0b6 Javadoc: Upper case acronym 1affd0b6 is described below commit 1affd0b6450d8e72454fccdf1355f3b63a3dac75 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 17 08:31:29 2023 -0400 Javadoc: Upper case acronym --- .../main/java/org/apache/commons/fileupload2/core/MultipartInput.java | 4 ++-- .../org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java index 6867644c..f195c81c 100644 --- a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java +++ b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java @@ -50,8 +50,8 @@ import org.apache.commons.io.output.NullOutputStream; * body := header-part CRLF body-part<br> * header-part := 1*header CRLF<br> * header := header-name ":" header-value<br> - * header-name := <printable ascii characters except ":"><br> - * header-value := <any ascii characters except CR & LF><br> + * header-name := <printable ASCII characters except ":"><br> + * header-value := <any ASCII characters except CR & LF><br> * body-data := <arbitrary data><br> * </code> * diff --git a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java index 11abfe95..9de24a46 100644 --- a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java +++ b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java @@ -24,7 +24,7 @@ import java.io.OutputStream; final class QuotedPrintableDecoder { /** - * The shift value required to create the upper nibble from the first of 2 byte values converted from ascii hex. + * The shift value required to create the upper nibble from the first of 2 byte values converted from ASCII hex. */ private static final int UPPER_NIBBLE_SHIFT = Byte.SIZE / 2; @@ -87,7 +87,7 @@ final class QuotedPrintableDecoder { /** * Converts a hexadecimal digit to the binary value it represents. * - * @param b the ascii hexadecimal byte to convert (0-0, A-F, a-f) + * @param b the ASCII hexadecimal byte to convert (0-0, A-F, a-f) * @return the int value of the hexadecimal byte, 0-15 * @throws IOException if the byte is not a valid hexadecimal digit. */