This commit is contained in:
Gary Gregory 2025-01-09 10:06:44 -05:00
parent e7d001f1b7
commit 65112a297b
1 changed files with 2 additions and 2 deletions

View File

@ -8761,10 +8761,10 @@ public class StringUtils {
}
/**
* 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.
* Returns the result of calling {@code toString} on argument if the argument is not {@code null} and returns the empty String otherwise.
*
* @param o an object
* @return the result of calling {@code toString} on the first argument if it is not {@code null} and the empty String otherwise.
* @return the result of calling {@code toString} on the argument if it is not {@code null} and the empty String otherwise.
* @see Objects#toString(Object)
*/
private static String toString(final Object obj) {