We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7330d2 commit 8daef69Copy full SHA for 8daef69
client/src/main/java/org/asynchttpclient/channel/ChannelPoolPartitioning.java
@@ -15,13 +15,13 @@
15
*/
16
package org.asynchttpclient.channel;
17
18
+import java.util.Objects;
19
+
20
import org.asynchttpclient.proxy.ProxyServer;
21
import org.asynchttpclient.proxy.ProxyType;
22
import org.asynchttpclient.uri.Uri;
23
import org.jetbrains.annotations.Nullable;
24
-import java.util.Objects;
-
25
@FunctionalInterface
26
public interface ChannelPoolPartitioning {
27
@@ -111,7 +111,8 @@ public String toString() {
111
", virtualHost=" + virtualHost +
112
", proxyHost=" + proxyHost +
113
", proxyPort=" + proxyPort +
114
- ", proxyType=" + proxyType;
+ ", proxyType=" + proxyType +
115
+ ")";
116
}
117
118
0 commit comments