Remove reference to HttpStatus

This commit removes an import on a class in "spring-web" as this class
is also meant to be used with Jersey only (i.e. when "spring-web" is
not present on the classpath).

Closes gh-10051
This commit is contained in:
Stephane Nicoll
2017-08-22 10:03:32 +02:00
parent f801c12a69
commit 79bdaad686

View File

@@ -21,7 +21,6 @@ import java.util.HashMap;
import java.util.Map;
import org.springframework.boot.actuate.health.Status;
import org.springframework.http.HttpStatus;
import org.springframework.util.Assert;
/**
@@ -48,7 +47,7 @@ public class HealthStatusHttpMapper {
/**
* Set specific status mappings.
* @param statusMapping a map of status code to {@link HttpStatus}
* @param statusMapping a map of status code to {@code HttpStatus}
*/
public void setStatusMapping(Map<String, Integer> statusMapping) {
Assert.notNull(statusMapping, "StatusMapping must not be null");
@@ -57,7 +56,7 @@ public class HealthStatusHttpMapper {
/**
* Add specific status mappings to the existing set.
* @param statusMapping a map of status code to {@link HttpStatus}
* @param statusMapping a map of status code to {@code HttpStatus}
*/
public void addStatusMapping(Map<String, Integer> statusMapping) {
Assert.notNull(statusMapping, "StatusMapping must not be null");