(SocketAddress targetServerAddress)
| 262 | */ |
| 263 | public static final ProxyDetector NOOP_PROXY_DETECTOR = new ProxyDetector() { |
| 264 | @Nullable |
| 265 | @Override |
| 266 | public ProxiedSocketAddress proxyFor(SocketAddress targetServerAddress) { |
| 267 | return null; |
| 268 | } |
| 269 | }; |
| 270 | |
| 271 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected