From abf7e9c4d02e2cf54ef6716d85bc3376338685e9 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 545fb749b..96d62e311 100644 --- a/src/main/java/org/springframework/data/aot/AotContext.java +++ b/src/main/java/org/springframework/data/aot/AotContext.java @@ -166,7 +166,7 @@ public interface AotContext { 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 07d934dae..46008cee8 100644 --- a/src/main/java/org/springframework/data/auditing/Auditor.java +++ b/src/main/java/org/springframework/data/auditing/Auditor.java @@ -57,7 +57,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}. */ public static Auditor of(@Nullable T source) { @@ -75,7 +75,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(@Nullable Optional source) { return Auditor.of(source.orElse(null));