Browse Source

Fix compile error due to previous polish

pull/11812/merge
Phillip Webb 8 years ago
parent
commit
84438183e1
  1. 4
      spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/invoke/convert/ConversionServiceParameterValueMapperTests.java

4
spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/invoke/convert/ConversionServiceParameterValueMapperTests.java

@ -114,8 +114,8 @@ public class ConversionServiceParameterValueMapperTests { @@ -114,8 +114,8 @@ public class ConversionServiceParameterValueMapperTests {
}
@Override
public boolean isNullable() {
return true;
public boolean isMandatory() {
return false;
}
}

Loading…
Cancel
Save