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 63fe8d6 commit 3da93e1Copy full SHA for 3da93e1
httpcore5/src/main/java/org/apache/hc/core5/http/impl/routing/RequestRouter.java
@@ -96,6 +96,11 @@ public T apply(final URIAuthority authority) {
96
return singleAuthority.equals(authority) ? router : null;
97
}
98
99
+ @Override
100
+ public String toString() {
101
+ return singleAuthority + " " + router;
102
+ }
103
+
104
105
106
static class NoAuthorityResolver<T> implements Function<URIAuthority, T> {
0 commit comments