src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AuthenticationFilter.java
branchhttp-client-branch
changeset 55764 34d7cc00f87a
parent 47216 71c04702a3d5
child 55799 c71f52f48d97
equal deleted inserted replaced
55763:634d8e14c172 55764:34d7cc00f87a
    81                                                           rtype
    81                                                           rtype
    82         );
    82         );
    83     }
    83     }
    84 
    84 
    85     private URI getProxyURI(HttpRequestImpl r) {
    85     private URI getProxyURI(HttpRequestImpl r) {
    86         InetSocketAddress proxy = r.proxy(exchange.client());
    86         InetSocketAddress proxy = r.proxy();
    87         if (proxy == null) {
    87         if (proxy == null) {
    88             return null;
    88             return null;
    89         }
    89         }
    90 
    90 
    91         // our own private scheme for proxy URLs
    91         // our own private scheme for proxy URLs