From 2bac371c5b91dc003142f506434fa44c40e234ff Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 6 Apr 2023 17:35:50 +0200 Subject: [PATCH] Improve Javadoc for ObjectUtils.nullSafeConciseToString() --- .../src/main/java/org/springframework/util/ObjectUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/util/ObjectUtils.java b/spring-core/src/main/java/org/springframework/util/ObjectUtils.java index a24f84d485b..42e04655959 100644 --- a/spring-core/src/main/java/org/springframework/util/ObjectUtils.java +++ b/spring-core/src/main/java/org/springframework/util/ObjectUtils.java @@ -909,8 +909,8 @@ public abstract class ObjectUtils { * with {@code @} and a hex string form of the object's identity hash code * *

In the context of this method, a simple type is any of the following: - * a primitive or primitive wrapper (excluding {@code Void} and {@code void}), - * an enum, a Number, a Date, a Temporal, a URI, a URL, or a Locale. + * a primitive wrapper (excluding {@link Void}), an {@link Enum}, a {@link Number}, + * a {@link Date}, a {@link Temporal}, a {@link URI}, a {@link URL}, or a {@link Locale}. * @param obj the object to build a string representation for * @return a concise string representation of the supplied object * @since 5.3.27