Skip to content

Commit

Permalink
Move hints to dedicated top-level package (avoiding aot<->support cycle)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Oct 11, 2022
1 parent 4bb2e23 commit 0f8ca80
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.test.context.aot.hint;
package org.springframework.test.context.hint;

import org.springframework.aot.hint.RuntimeHints;
import org.springframework.core.annotation.MergedAnnotations;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.test.context.aot.hint;
package org.springframework.test.context.hint;

import java.lang.annotation.Annotation;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
@NonNullApi
@NonNullFields
package org.springframework.test.context.aot.hint;
package org.springframework.test.context.hint;

import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;
4 changes: 2 additions & 2 deletions spring-test/src/main/resources/META-INF/spring/aot.factories
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
org.springframework.aot.hint.RuntimeHintsRegistrar=\
org.springframework.test.context.aot.hint.TestContextRuntimeHints
org.springframework.test.context.hint.TestContextRuntimeHints

org.springframework.test.context.aot.TestRuntimeHintsRegistrar=\
org.springframework.test.context.aot.hint.StandardTestRuntimeHints
org.springframework.test.context.hint.StandardTestRuntimeHints

0 comments on commit 0f8ca80

Please sign in to comment.