DATAES-650 - Polishing.

This commit is contained in:
Peter-Josef Meisch 2019-09-19 23:48:25 +02:00
parent 948d29ba65
commit 4b9bcfb410
2 changed files with 4 additions and 2 deletions

View File

@ -62,6 +62,7 @@ class DefaultWebClientProvider implements WebClientProvider {
* @param connector can be {@literal null}.
* @param errorListener must not be {@literal null}.
* @param headers must not be {@literal null}.
* @param pathPrefixcan be {@literal null}
*/
private DefaultWebClientProvider(String scheme, @Nullable ClientHttpConnector connector,
Consumer<Throwable> errorListener, HttpHeaders headers, @Nullable String pathPrefix) {

View File

@ -59,6 +59,7 @@ import org.springframework.web.util.UriBuilder;
/**
* @author Christoph Strobl
* @author Huw Ayling-Miller
*/
public class ReactiveMockClientTestsUtils {
@ -263,12 +264,12 @@ public class ReactiveMockClientTestsUtils {
public WebClientProvider withErrorListener(Consumer<Throwable> errorListener) {
throw new UnsupportedOperationException();
}
@Override
public String getPathPrefix() {
return null;
}
@Override
public WebClientProvider withPathPrefix(String pathPrefix) {
throw new UnsupportedOperationException();