From c72f3d79af26ce3b07a4c9ae1506a5b0170bc9c7 Mon Sep 17 00:00:00 2001 From: prd Date: Thu, 7 Apr 2022 11:22:42 +0800 Subject: [PATCH] Add link to @Order annotation See gh-30572 --- .../springframework/boot/context/annotation/Configurations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/Configurations.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/Configurations.java index 59056d2e8e..b17c88e1c4 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/Configurations.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/Configurations.java @@ -47,7 +47,7 @@ import org.springframework.util.ClassUtils; * This class is primarily intended for use with tests that need to specify configuration * classes but can't use {@link SpringRunner}. *

- * Implementations of this class should be annotated with {@code @Order} or implement + * Implementations of this class should be annotated with {@link org.springframework.core.annotation.Order @Order} or implement * {@link Ordered}. * * @author Phillip Webb