Skip to content

Commit 65112a2

Browse files
committed
Jaavdoc
1 parent e7d001f commit 65112a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/commons/lang3/StringUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8761,10 +8761,10 @@ public static String toString(final byte[] bytes, final String charsetName) {
87618761
}
87628762

87638763
/**
8764-
* Returns the result of calling {@code toString} on the first argument if the first argument is not {@code null} and returns the empty String otherwise.
8764+
* Returns the result of calling {@code toString} on argument if the argument is not {@code null} and returns the empty String otherwise.
87658765
*
87668766
* @param o an object
8767-
* @return the result of calling {@code toString} on the first argument if it is not {@code null} and the empty String otherwise.
8767+
* @return the result of calling {@code toString} on the argument if it is not {@code null} and the empty String otherwise.
87688768
* @see Objects#toString(Object)
87698769
*/
87708770
private static String toString(final Object obj) {

0 commit comments

Comments
 (0)