Skip to content

Commit 8daef69

Browse files
authored
closed parenthesis addition - toString() in ChannelPoolPartitioning (#2103)
1 parent d7330d2 commit 8daef69

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

client/src/main/java/org/asynchttpclient/channel/ChannelPoolPartitioning.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
*/
1616
package org.asynchttpclient.channel;
1717

18+
import java.util.Objects;
19+
1820
import org.asynchttpclient.proxy.ProxyServer;
1921
import org.asynchttpclient.proxy.ProxyType;
2022
import org.asynchttpclient.uri.Uri;
2123
import org.jetbrains.annotations.Nullable;
2224

23-
import java.util.Objects;
24-
2525
@FunctionalInterface
2626
public interface ChannelPoolPartitioning {
2727

@@ -111,7 +111,8 @@ public String toString() {
111111
", virtualHost=" + virtualHost +
112112
", proxyHost=" + proxyHost +
113113
", proxyPort=" + proxyPort +
114-
", proxyType=" + proxyType;
114+
", proxyType=" + proxyType +
115+
")";
115116
}
116117
}
117118
}

0 commit comments

Comments
 (0)