From 2850cf28ac4163c1c6ba9c7117c6915c067a228f Mon Sep 17 00:00:00 2001 From: ohbitton Date: Thu, 7 Nov 2024 17:31:16 +0200 Subject: [PATCH] wtf --- .../kusto/data/http/HttpClientProperties.java | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/data/src/main/java/com/microsoft/azure/kusto/data/http/HttpClientProperties.java b/data/src/main/java/com/microsoft/azure/kusto/data/http/HttpClientProperties.java index c511d2d8..00d0cc8b 100644 --- a/data/src/main/java/com/microsoft/azure/kusto/data/http/HttpClientProperties.java +++ b/data/src/main/java/com/microsoft/azure/kusto/data/http/HttpClientProperties.java @@ -56,7 +56,6 @@ public Integer maxIdleTime() { * {@linkplain #maxKeepAliveTime()}. * * @return whether a custom connection keep-alive strategy should be used - * * @see #maxKeepAliveTime() * @see Keep-Alive */ @@ -85,21 +84,21 @@ public Integer maxConnectionTotal() { } /** - * The maximum number of connections the client may keep open at the same time per route. + * Gets the HTTP Client Provider used by Azure Core when constructing HTTP Client instances. * - * @return the maximum number of connections per route + * @return the provider */ - public Integer maxConnectionRoute() { - return maxConnectionRoute; + public Class provider() { + return provider; } /** - * Gets the HTTP Client Provider used by Azure Core when constructing HTTP Client instances. + * The maximum number of connections the client may keep open at the same time per route. * - * @return the provider + * @return the maximum number of connections per route */ - public Class provider() { - return provider; + public Integer maxConnectionRoute() { + return maxConnectionRoute; } /** @@ -150,7 +149,6 @@ public HttpClientPropertiesBuilder maxIdleTime(Integer maxIdleTime) { * @param keepAlive set to {@code false} to use a default keep-alive strategy or to {@code true} to use a * custom one * @return the builder instance - * * @see #maxKeepAliveTime(Integer) * @see Keep-Alive */