src/java.base/share/classes/sun/net/www/http/HttpClient.java
changeset 53563 a4b7ea85d668
parent 53018 8bf9268df0e2
child 57968 8595871a5446
child 58424 94ca05133eb2
equal deleted inserted replaced
53559:1ae0b76bb5df 53563:a4b7ea85d668
   214                          boolean proxyDisabled) throws IOException {
   214                          boolean proxyDisabled) throws IOException {
   215         this(url, null, -1, proxyDisabled);
   215         this(url, null, -1, proxyDisabled);
   216     }
   216     }
   217 
   217 
   218     /* This package-only CTOR should only be used for FTP piggy-backed on HTTP
   218     /* This package-only CTOR should only be used for FTP piggy-backed on HTTP
   219      * HTTP URL's that use this won't take advantage of keep-alive.
   219      * URL's that use this won't take advantage of keep-alive.
   220      * Additionally, this constructor may be used as a last resort when the
   220      * Additionally, this constructor may be used as a last resort when the
   221      * first HttpClient gotten through New() failed (probably b/c of a
   221      * first HttpClient gotten through New() failed (probably b/c of a
   222      * Keep-Alive mismatch).
   222      * Keep-Alive mismatch).
   223      *
   223      *
   224      * XXX That documentation is wrong ... it's not package-private any more
   224      * XXX That documentation is wrong ... it's not package-private any more