Bumping versions

This commit is contained in:
buildmaster
2021-03-11 09:59:24 +00:00
parent df5bda79ff
commit 35f219c296

View File

@@ -138,10 +138,12 @@ public class ConfigServerConfigDataCustomizationIntegrationTests {
@Override
@SuppressWarnings("unchecked")
public <T> ResponseEntity<T> exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Object... uriVariables) throws RestClientException {
public <T> ResponseEntity<T> exchange(String url, HttpMethod method, HttpEntity<?> requestEntity,
Class<T> responseType, Object... uriVariables) throws RestClientException {
ResponseEntity<T> response = (ResponseEntity<T>) ResponseEntity.of(Optional.of(new Environment("test")));
return response;
}
}
static class BindHandlerBootstrapper implements Bootstrapper {