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 14c5c2205eec16e81d235a4667bc5ea98d116092 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jun 12 10:07:17 2025 -0400 Javadoc --- .../java/org/apache/commons/lang3/mutable/MutableObject.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java b/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java index 8647aaebd..b5a6c646d 100644 --- a/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java +++ b/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java @@ -47,7 +47,7 @@ public MutableObject() { /** * Constructs a new MutableObject with the specified value. * - * @param value the initial value to store + * @param value the initial value to store. */ public MutableObject(final T value) { this.value = value; @@ -58,7 +58,7 @@ public MutableObject(final T value) { * is not {@code null} and is a {@link MutableObject} object that contains the same {@link T} * value as this object. * - * @param obj the object to compare with, {@code null} returns {@code false} + * @param obj the object to compare with, {@code null} returns {@code false}. * @return {@code true} if the objects are the same; * {@code true} if the objects have equivalent {@code value} fields; * {@code false} otherwise. @@ -81,7 +81,7 @@ public boolean equals(final Object obj) { /** * Gets the value. * - * @return the value, may be null + * @return the value, may be null. */ @Override public T getValue() { @@ -101,7 +101,7 @@ public int hashCode() { /** * Sets the value. * - * @param value the value to set + * @param value the value to set. */ @Override public void setValue(final T value) { @@ -111,7 +111,7 @@ public void setValue(final T value) { /** * Returns the String value of this mutable. * - * @return the mutable value as a string + * @return the mutable value as a string. */ @Override public String toString() {