From ebfa612eb7d2f70a2a0f668e81e0055bc1a1fc3a Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Thu, 19 Feb 2026 20:43:39 +0700 Subject: [PATCH] Fix missing braces. Signed-off-by: Tran Ngoc Nhan Closes #3462 --- src/main/java/org/springframework/data/aot/AotContext.java | 2 +- src/main/java/org/springframework/data/auditing/Auditor.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/springframework/data/aot/AotContext.java b/src/main/java/org/springframework/data/aot/AotContext.java index 2fc21ea53..17765f329 100644 --- a/src/main/java/org/springframework/data/aot/AotContext.java +++ b/src/main/java/org/springframework/data/aot/AotContext.java @@ -280,7 +280,7 @@ public interface AotContext extends EnvironmentCapable { interface TypeIntrospector { /** - * Determines whether @link Class type} is present on the application classpath. + * Determines whether {@link Class type} is present on the application classpath. * * @return {@literal true} if the {@link Class type} is present on the application classpath. * @see #getClassLoader() diff --git a/src/main/java/org/springframework/data/auditing/Auditor.java b/src/main/java/org/springframework/data/auditing/Auditor.java index a879205dc..830a456d0 100644 --- a/src/main/java/org/springframework/data/auditing/Auditor.java +++ b/src/main/java/org/springframework/data/auditing/Auditor.java @@ -58,7 +58,7 @@ class Auditor { * * @param source can be {@literal null}. * @param - * @return {@link Auditor#none()} if the given {@literal source} is {@literal null}. } + * @return {@link Auditor#none()} if the given {@literal source} is {@literal null}. */ @SuppressWarnings({ "unchecked", "rawtypes" }) public static Auditor of(@Nullable T source) { @@ -77,7 +77,7 @@ class Auditor { * * @param source must not be {@literal null}. * @param - * @return {@link Auditor#none()} if the given {@literal source} is {@literal null}. } + * @return {@link Auditor#none()} if the given {@literal source} is {@literal null}. */ public static Auditor ofOptional(Optional source) { return Auditor.of(source.orElse(null));