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));