Skip to content

Commit 4b9bcfb

Browse files
committed
DATAES-650 - Polishing.
1 parent 948d29b commit 4b9bcfb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/java/org/springframework/data/elasticsearch/client/reactive/DefaultWebClientProvider.java

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class DefaultWebClientProvider implements WebClientProvider {
6262
* @param connector can be {@literal null}.
6363
* @param errorListener must not be {@literal null}.
6464
* @param headers must not be {@literal null}.
65+
* @param pathPrefixcan be {@literal null}
6566
*/
6667
private DefaultWebClientProvider(String scheme, @Nullable ClientHttpConnector connector,
6768
Consumer<Throwable> errorListener, HttpHeaders headers, @Nullable String pathPrefix) {

src/test/java/org/springframework/data/elasticsearch/client/reactive/ReactiveMockClientTestsUtils.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959

6060
/**
6161
* @author Christoph Strobl
62+
* @author Huw Ayling-Miller
6263
*/
6364
public class ReactiveMockClientTestsUtils {
6465

@@ -263,12 +264,12 @@ public Consumer<Throwable> getErrorListener() {
263264
public WebClientProvider withErrorListener(Consumer<Throwable> errorListener) {
264265
throw new UnsupportedOperationException();
265266
}
266-
267+
267268
@Override
268269
public String getPathPrefix() {
269270
return null;
270271
}
271-
272+
272273
@Override
273274
public WebClientProvider withPathPrefix(String pathPrefix) {
274275
throw new UnsupportedOperationException();

0 commit comments

Comments
 (0)