File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
java/org/springframework/data/jpa/aot
resources/META-INF/spring
test/java/org/springframework/data/jpa/aot Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3131 * @author Christoph Strobl
3232 * @since 3.0
3333 */
34- public class JpaRuntimeHintsRegistrar implements RuntimeHintsRegistrar {
34+ public class JpaRuntimeHints implements RuntimeHintsRegistrar {
3535
3636 @ Override
3737 public void registerHints (RuntimeHints hints , @ Nullable ClassLoader classLoader ) {
Original file line number Diff line number Diff line change 11org.springframework.aot.hint.RuntimeHintsRegistrar=\
2- org.springframework.data.jpa.aot.JpaRuntimeHintsRegistrar
2+ org.springframework.data.jpa.aot.JpaRuntimeHints
Original file line number Diff line number Diff line change 2828/**
2929 * @author Christoph Strobl
3030 */
31- class JpaRuntimeHintsRegistrarUnitTests {
31+ class JpaRuntimeHintsUnitTests {
3232
3333 @ Test // GH-2497
3434 void registersAuditing () {
3535
3636 RuntimeHints hints = new RuntimeHints ();
3737
38- JpaRuntimeHintsRegistrar registrar = new JpaRuntimeHintsRegistrar ();
38+ JpaRuntimeHints registrar = new JpaRuntimeHints ();
3939 registrar .registerHints (hints , null );
4040
4141 assertThat (hints ).matches (reflection ().onType (AnnotationBeanConfigurerAspect .class ))
@@ -48,7 +48,7 @@ void skipsAuditingHintsIfAspectjNotPresent() {
4848
4949 RuntimeHints hints = new RuntimeHints ();
5050
51- JpaRuntimeHintsRegistrar registrar = new JpaRuntimeHintsRegistrar ();
51+ JpaRuntimeHints registrar = new JpaRuntimeHints ();
5252 registrar .registerHints (hints , HidingClassLoader .hidePackages ("org.springframework.beans.factory.aspectj" ));
5353
5454 assertThat (hints ).matches (reflection ().onType (AnnotationBeanConfigurerAspect .class ).negate ())
You can’t perform that action at this time.
0 commit comments