diff --git a/module/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/DefaultRestartInitializer.java b/module/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/DefaultRestartInitializer.java index af6d31c025e..21cf348a51e 100644 --- a/module/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/DefaultRestartInitializer.java +++ b/module/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/DefaultRestartInitializer.java @@ -45,9 +45,9 @@ public class DefaultRestartInitializer implements RestartInitializer { } /** - * Returns if the thread is for a main invocation. By default {@link #isMain(Thread) - * checks the name of the thread} and {@link #isDevelopmentClassLoader(ClassLoader) - * the context classloader}. + * Returns if the thread is for a main invocation. By default + * {@link #isMainThread(Thread)} checks the name of the thread} and + * {@link #isDevelopmentClassLoader(ClassLoader) the context classloader}. * @param thread the thread to check * @return {@code true} if the thread is a main invocation * @see #isMainThread diff --git a/module/spring-boot-jooq-test/src/test/java/org/springframework/boot/jooq/test/autoconfigure/ExampleComponent.java b/module/spring-boot-jooq-test/src/test/java/org/springframework/boot/jooq/test/autoconfigure/ExampleComponent.java index fe1fe51539f..941552faf57 100644 --- a/module/spring-boot-jooq-test/src/test/java/org/springframework/boot/jooq/test/autoconfigure/ExampleComponent.java +++ b/module/spring-boot-jooq-test/src/test/java/org/springframework/boot/jooq/test/autoconfigure/ExampleComponent.java @@ -19,7 +19,7 @@ package org.springframework.boot.jooq.test.autoconfigure; import org.springframework.stereotype.Component; /** - * Example component used with {@JooqTest @JooqTest} tests. + * Example component used with {@link JooqTest @JooqTest} tests. * * @author Phillip Webb */