Fix wrong reference in ReadinessStateHealthIndicator javadoc

See gh-22760
This commit is contained in:
ksmilek
2020-08-06 11:04:06 +02:00
committed by Stephane Nicoll
parent dea2cc480d
commit 5cb1b41355

View File

@@ -20,11 +20,10 @@ import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.boot.actuate.health.Status;
import org.springframework.boot.availability.ApplicationAvailability;
import org.springframework.boot.availability.AvailabilityState;
import org.springframework.boot.availability.LivenessState;
import org.springframework.boot.availability.ReadinessState;
/**
* A {@link HealthIndicator} that checks the {@link LivenessState} of the application.
* A {@link HealthIndicator} that checks the {@link ReadinessState} of the application.
*
* @author Brian Clozel
* @author Phillip Webb