From 25fe6a107ae42d65f12bbfa1f7577e48cbe46b77 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 9 Jul 2021 10:40:00 +0200 Subject: [PATCH] Fix visibility of a type exposed as a bean Closes gh-27189 --- .../autoconfigure/health/HealthEndpointConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/health/HealthEndpointConfiguration.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/health/HealthEndpointConfiguration.java index 88d6b0e7f90..0190380e57f 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/health/HealthEndpointConfiguration.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/health/HealthEndpointConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2020 the original author or authors. + * Copyright 2012-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -102,7 +102,7 @@ class HealthEndpointConfiguration { * {@link BeanPostProcessor} to invoke {@link HealthEndpointGroupsPostProcessor} * beans. */ - private static class HealthEndpointGroupsBeanPostProcessor implements BeanPostProcessor { + static class HealthEndpointGroupsBeanPostProcessor implements BeanPostProcessor { private final ObjectProvider postProcessors;