From 8958eb87386a2fc21bd4fa442facb69963cab57d Mon Sep 17 00:00:00 2001 From: Christoph Strobl Date: Tue, 6 Sep 2022 17:38:04 +0200 Subject: [PATCH] Remove usage of RuntimeHintsUtils & SynthesizedAnnotation. Closes: #451 --- .../data/keyvalue/aot/KeyValueRuntimeHints.java | 5 ----- 1 file changed, 5 deletions(-) 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); } }