Polish deprecation warnings

See gh-32541
This commit is contained in:
Andy Wilkinson
2022-09-30 18:51:37 +01:00
parent dbcb291b7a
commit 522cb1c0ea
2 changed files with 2 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ import org.springframework.boot.actuate.health.HealthContributor;
*
* @author Phillip Webb
*/
@SuppressWarnings("removal")
@Deprecated(since = "3.0.0", forRemoval = true)
class CompositeHealthContributorConfigurationReflectionTests
extends AbstractCompositeHealthContributorConfigurationTests<HealthContributor, TestHealthIndicator> {

View File

@@ -30,6 +30,7 @@ import org.springframework.boot.actuate.health.ReactiveHealthContributor;
*
* @author Phillip Webb
*/
@SuppressWarnings("removal")
@Deprecated(since = "3.0.0", forRemoval = true)
class CompositeReactiveHealthContributorConfigurationReflectionTests extends
AbstractCompositeHealthContributorConfigurationTests<ReactiveHealthContributor, TestReactiveHealthIndicator> {