diff --git a/src/main/java/org/springframework/data/keyvalue/aot/KeyValueRuntimeHints.java b/src/main/java/org/springframework/data/keyvalue/aot/KeyValueRuntimeHints.java index df6bae1..dc882e2 100644 --- a/src/main/java/org/springframework/data/keyvalue/aot/KeyValueRuntimeHints.java +++ b/src/main/java/org/springframework/data/keyvalue/aot/KeyValueRuntimeHints.java @@ -21,8 +21,6 @@ import org.springframework.aot.hint.MemberCategory; import org.springframework.aot.hint.RuntimeHints; import org.springframework.aot.hint.RuntimeHintsRegistrar; import org.springframework.aot.hint.TypeReference; -import org.springframework.aot.hint.support.RuntimeHintsUtils; -import org.springframework.data.keyvalue.annotation.KeySpace; import org.springframework.data.keyvalue.repository.query.KeyValuePartTreeQuery; import org.springframework.lang.Nullable; @@ -43,8 +41,5 @@ class KeyValueRuntimeHints implements RuntimeHintsRegistrar { TypeReference.of(org.springframework.data.keyvalue.repository.support.SimpleKeyValueRepository.class), TypeReference.of(KeyValuePartTreeQuery.class)), hint -> hint.withMembers(MemberCategory.INVOKE_DECLARED_CONSTRUCTORS, MemberCategory.INVOKE_DECLARED_METHODS)); - - // PROXIES - RuntimeHintsUtils.registerAnnotation(hints, KeySpace.class); } }