Skip to content

Commit 2bac371

Browse files
committed
Improve Javadoc for ObjectUtils.nullSafeConciseToString()
1 parent cef9166 commit 2bac371

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-core/src/main/java/org/springframework/util/ObjectUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -909,8 +909,8 @@ public static String nullSafeToString(@Nullable short[] array) {
909909
* with {@code @} and a hex string form of the object's identity hash code</li>
910910
* </ul>
911911
* <p>In the context of this method, a <em>simple type</em> is any of the following:
912-
* a primitive or primitive wrapper (excluding {@code Void} and {@code void}),
913-
* an enum, a Number, a Date, a Temporal, a URI, a URL, or a Locale.
912+
* a primitive wrapper (excluding {@link Void}), an {@link Enum}, a {@link Number},
913+
* a {@link Date}, a {@link Temporal}, a {@link URI}, a {@link URL}, or a {@link Locale}.
914914
* @param obj the object to build a string representation for
915915
* @return a concise string representation of the supplied object
916916
* @since 5.3.27

0 commit comments

Comments
 (0)