Change BindingReflectionHintsRegistrar package

Move it to org.springframework.aot.hint.

See gh-28979
This commit is contained in:
Sébastien Deleuze
2022-09-02 19:30:21 +02:00
parent 7ace1f9dc5
commit f50c301387
7 changed files with 6 additions and 16 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.aot.hint.annotation;
package org.springframework.aot.hint;
import java.lang.reflect.Type;
import java.util.List;
@@ -22,10 +22,6 @@ import java.util.Set;
import org.junit.jupiter.api.Test;
import org.springframework.aot.hint.ExecutableMode;
import org.springframework.aot.hint.MemberCategory;
import org.springframework.aot.hint.RuntimeHints;
import org.springframework.aot.hint.TypeReference;
import org.springframework.core.ResolvableType;
import static org.assertj.core.api.Assertions.assertThat;

View File

@@ -67,9 +67,6 @@ public class RegisterReflectionForBindingProcessorTests {
return null;
}
public BindingReflectionHintsRegistrarTests.SampleEmptyClass unmanaged() {
return null;
}
}
}

View File

@@ -14,12 +14,11 @@
* limitations under the License.
*/
package org.springframework.aot.hint.annotation
package org.springframework.aot.hint
import org.assertj.core.api.Assertions.assertThat
import org.assertj.core.api.ThrowingConsumer
import org.junit.jupiter.api.Test
import org.springframework.aot.hint.*
/**
* Tests for Kotlin support in [BindingReflectionHintsRegistrar].