Skip to content

Commit 0f8ca80

Browse files
committed
Move hints to dedicated top-level package (avoiding aot<->support cycle)
See gh-29026, gh-29069
1 parent 4bb2e23 commit 0f8ca80

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.test.context.aot.hint;
17+
package org.springframework.test.context.hint;
1818

1919
import org.springframework.aot.hint.RuntimeHints;
2020
import org.springframework.core.annotation.MergedAnnotations;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.test.context.aot.hint;
17+
package org.springframework.test.context.hint;
1818

1919
import java.lang.annotation.Annotation;
2020
import java.util.Arrays;

spring-test/src/main/java/org/springframework/test/context/aot/hint/package-info.java renamed to spring-test/src/main/java/org/springframework/test/context/hint/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55
@NonNullApi
66
@NonNullFields
7-
package org.springframework.test.context.aot.hint;
7+
package org.springframework.test.context.hint;
88

99
import org.springframework.lang.NonNullApi;
1010
import org.springframework.lang.NonNullFields;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
org.springframework.aot.hint.RuntimeHintsRegistrar=\
2-
org.springframework.test.context.aot.hint.TestContextRuntimeHints
2+
org.springframework.test.context.hint.TestContextRuntimeHints
33

44
org.springframework.test.context.aot.TestRuntimeHintsRegistrar=\
5-
org.springframework.test.context.aot.hint.StandardTestRuntimeHints
5+
org.springframework.test.context.hint.StandardTestRuntimeHints

0 commit comments

Comments
 (0)