Skip to content

Commit c654638

Browse files
committed
Polish "Add link to @order annotation"
See gh-30572
1 parent c72f3d7 commit c654638

File tree

1 file changed

+4
-3
lines changed
  • spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation

1 file changed

+4
-3
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/Configurations.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2022 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,6 +33,7 @@
3333
import org.springframework.context.annotation.ImportSelector;
3434
import org.springframework.core.OrderComparator;
3535
import org.springframework.core.Ordered;
36+
import org.springframework.core.annotation.Order;
3637
import org.springframework.test.context.junit4.SpringRunner;
3738
import org.springframework.util.Assert;
3839
import org.springframework.util.ClassUtils;
@@ -47,8 +48,8 @@
4748
* This class is primarily intended for use with tests that need to specify configuration
4849
* classes but can't use {@link SpringRunner}.
4950
* <p>
50-
* Implementations of this class should be annotated with {@link org.springframework.core.annotation.Order @Order} or implement
51-
* {@link Ordered}.
51+
* Implementations of this class should be annotated with {@link Order @Order} or
52+
* implement {@link Ordered}.
5253
*
5354
* @author Phillip Webb
5455
* @since 2.0.0

0 commit comments

Comments
 (0)