Polish Native Support

- Remove unneeded deprecateion marker
- Add missing reflected class

Issue gh-16536
This commit is contained in:
Josh Cummings
2025-04-14 13:58:04 -06:00
parent 791feee355
commit f86c4ad383
4 changed files with 6 additions and 7 deletions

View File

@@ -51,6 +51,9 @@ class WebSecurityConfigurationRuntimeHintsTests {
.onType(TypeReference
.of("org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$CompositeFilterChainProxy"))
.withMemberCategory(MemberCategory.INVOKE_DECLARED_CONSTRUCTORS)).accepts(this.hints);
assertThat(RuntimeHintsPredicates.reflection()
.onType(TypeReference.of("org.springframework.web.filter.ServletRequestPathFilter"))
.withMemberCategory(MemberCategory.INVOKE_DECLARED_CONSTRUCTORS)).accepts(this.hints);
}
}