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-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new efce331  Javadoc.
efce331 is described below

commit efce331acd5b9e061243229ade1c664b150292cf
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Apr 3 10:42:12 2022 -0400

    Javadoc.
---
 src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java 
b/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java
index c836eda..0065158 100644
--- a/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java
+++ b/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java
@@ -675,6 +675,7 @@ public class FastDatePrinter implements DatePrinter, 
Serializable {
      *
      * @param buffer the buffer to append to.
      * @param value the value to append digits from.
+     * @throws IOException If an I/O error occurs
      */
     private static void appendDigits(final Appendable buffer, final int value) 
throws IOException {
         buffer.append((char) (value / 10 + '0'));
@@ -688,6 +689,8 @@ public class FastDatePrinter implements DatePrinter, 
Serializable {
      *
      * @param buffer the buffer to append to.
      * @param value the value to append digits from.
+     * @param minFieldWidth Minimum field width.
+     * @throws IOException If an I/O error occurs
      */
     private static void appendFullDigits(final Appendable buffer, int value, 
int minFieldWidth) throws IOException {
         // specialized paths for 1 to 4 digits -> avoid the memory allocation 
from the temporary work array

Reply via email to