Skip to content

Commit 630d046

Browse files
committed
fix: Add missing import for Assert in SslHealthIndicator
The previous commit introduced an `Assert.notNull` check in the SslHealthIndicator constructor but missed the required import for `org.springframework.util.Assert`. This caused the pull request build to fail. This commit adds the necessary import statement to resolve the compilation error. Signed-off-by: geniuus <[email protected]>
1 parent 4d38802 commit 630d046

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/ssl/SslHealthIndicator.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import org.springframework.boot.info.SslInfo.BundleInfo;
2929
import org.springframework.boot.info.SslInfo.CertificateChainInfo;
3030
import org.springframework.boot.info.SslInfo.CertificateInfo;
31+
import org.springframework.util.Assert;
3132

3233
/**
3334
* {@link HealthIndicator} that checks the certificates the application uses and reports

0 commit comments

Comments
 (0)