Remove unused ScopedFooConfiguration in ConditionalOnMissingBeanTests

See gh-43592
This commit is contained in:
Johnny Lim 2024-12-22 22:31:42 +09:00 committed by Stéphane Nicoll
parent 681d4c2744
commit 81f67b13e6
1 changed files with 0 additions and 11 deletions

View File

@ -682,17 +682,6 @@ class ConditionalOnMissingBeanTests {
}
@Configuration(proxyBeanMethods = false)
@TestAnnotation
static class ScopedFooConfiguration {
@Bean
String foo() {
return "foo";
}
}
@Configuration(proxyBeanMethods = false)
static class NotAutowireCandidateConfig {