Skip to content

Commit 19bb4e9

Browse files
committed
Improve Javadoc for ObjectUtils.nullSafeConciseToString()
1 parent 7a2594a commit 19bb4e9

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
@@ -932,8 +932,8 @@ public static String nullSafeToString(@Nullable short[] array) {
932932
* with {@code @} and a hex string form of the object's identity hash code</li>
933933
* </ul>
934934
* <p>In the context of this method, a <em>simple type</em> is any of the following:
935-
* a primitive or primitive wrapper (excluding {@code Void} and {@code void}),
936-
* an enum, a Number, a Date, a Temporal, a URI, a URL, or a Locale.
935+
* a primitive wrapper (excluding {@link Void}), an {@link Enum}, a {@link Number},
936+
* a {@link Date}, a {@link Temporal}, a {@link URI}, a {@link URL}, or a {@link Locale}.
937937
* @param obj the object to build a string representation for
938938
* @return a concise string representation of the supplied object
939939
* @since 5.3.27

0 commit comments

Comments
 (0)