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

commit 733efa39a687462232c55c9e66444b97fdf5ac4c
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Jun 11 13:51:18 2025 -0400

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

diff --git a/src/main/java/org/apache/commons/lang3/time/FastDateParser.java 
b/src/main/java/org/apache/commons/lang3/time/FastDateParser.java
index 54b203f71..82c0a416a 100644
--- a/src/main/java/org/apache/commons/lang3/time/FastDateParser.java
+++ b/src/main/java/org/apache/commons/lang3/time/FastDateParser.java
@@ -1019,6 +1019,7 @@ public Date parse(final String source) throws 
ParseException {
      * <p>
      * To determine if the parse has succeeded, the caller must check if the 
current parse position given by {@link ParsePosition#getIndex()} has been 
updated.
      * If the input buffer has been fully parsed, then the index will point to 
just after the end of the input buffer.
+     * </p>
      *
      * @see org.apache.commons.lang3.time.DateParser#parse(String, 
java.text.ParsePosition)
      */
@@ -1072,6 +1073,7 @@ public Object parseObject(final String source) throws 
ParseException {
     public Object parseObject(final String source, final ParsePosition pos) {
         return parse(source, pos);
     }
+
     // Serializing
     /**
      * Creates the object after serialization. This implementation 
reinitializes the transient properties.
@@ -1085,6 +1087,7 @@ private void readObject(final ObjectInputStream in) 
throws IOException, ClassNot
         final Calendar definingCalendar = Calendar.getInstance(timeZone, 
locale);
         init(definingCalendar);
     }
+
     /**
      * Gets a string version of this formatter.
      *

Reply via email to