Skip to content

Commit 14c5c22

Browse files
committed
Javadoc
1 parent 54de3fa commit 14c5c22

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/apache/commons/lang3/mutable/MutableObject.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public MutableObject() {
4747
/**
4848
* Constructs a new MutableObject with the specified value.
4949
*
50-
* @param value the initial value to store
50+
* @param value the initial value to store.
5151
*/
5252
public MutableObject(final T value) {
5353
this.value = value;
@@ -58,7 +58,7 @@ public MutableObject(final T value) {
5858
* is not {@code null} and is a {@link MutableObject} object that contains the same {@link T}
5959
* value as this object.
6060
*
61-
* @param obj the object to compare with, {@code null} returns {@code false}
61+
* @param obj the object to compare with, {@code null} returns {@code false}.
6262
* @return {@code true} if the objects are the same;
6363
* {@code true} if the objects have equivalent {@code value} fields;
6464
* {@code false} otherwise.
@@ -81,7 +81,7 @@ public boolean equals(final Object obj) {
8181
/**
8282
* Gets the value.
8383
*
84-
* @return the value, may be null
84+
* @return the value, may be null.
8585
*/
8686
@Override
8787
public T getValue() {
@@ -101,7 +101,7 @@ public int hashCode() {
101101
/**
102102
* Sets the value.
103103
*
104-
* @param value the value to set
104+
* @param value the value to set.
105105
*/
106106
@Override
107107
public void setValue(final T value) {
@@ -111,7 +111,7 @@ public void setValue(final T value) {
111111
/**
112112
* Returns the String value of this mutable.
113113
*
114-
* @return the mutable value as a string
114+
* @return the mutable value as a string.
115115
*/
116116
@Override
117117
public String toString() {

0 commit comments

Comments
 (0)