Skip to content

Commit b9c3dc3

Browse files
author
Eirik Bjørsnøs
committedMar 12, 2024
8327738: Remove unused internal method sun.n.w.p.h.HttpURLConnection.setDefaultAuthenticator
Reviewed-by: djelinski, dfuchs
1 parent 5b41466 commit b9c3dc3

File tree

2 files changed

+1
-123
lines changed

2 files changed

+1
-123
lines changed
 

‎src/java.base/share/classes/sun/net/www/protocol/http/HttpAuthenticator.java

-78
This file was deleted.

‎src/java.base/share/classes/sun/net/www/protocol/http/HttpURLConnection.java

+1-45
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1995, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1995, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -335,13 +335,6 @@ private static Set<String> schemesListToSet(String list) {
335335
private String userCookies = null;
336336
private String userCookies2 = null;
337337

338-
/* We only have a single static authenticator for now.
339-
* REMIND: backwards compatibility with JDK 1.1. Should be
340-
* eliminated for JDK 2.0.
341-
*/
342-
@Deprecated
343-
private static HttpAuthenticator defaultAuth;
344-
345338
/* all the headers we send
346339
* NOTE: do *NOT* dump out the content of 'requests' in the
347340
* output or stacktrace since it may contain security-sensitive
@@ -945,14 +938,6 @@ public ResponseCache run() {
945938
});
946939
}
947940

948-
/**
949-
* @deprecated. Use java.net.Authenticator.setDefault() instead.
950-
*/
951-
@Deprecated
952-
public static void setDefaultAuthenticator(HttpAuthenticator a) {
953-
defaultAuth = a;
954-
}
955-
956941
/**
957942
* opens a stream allowing redirects only to the same host.
958943
*/
@@ -2524,22 +2509,6 @@ public InetAddress run()
25242509
throw new AssertionError("should not reach here");
25252510
}
25262511
}
2527-
// For backwards compatibility, we also try defaultAuth
2528-
// REMIND: Get rid of this for JDK2.0.
2529-
2530-
if (ret == null && defaultAuth != null
2531-
&& defaultAuth.schemeSupported(scheme)) {
2532-
try {
2533-
@SuppressWarnings("deprecation")
2534-
URL u = new URL("http", host, port, "/");
2535-
String a = defaultAuth.authString(u, scheme, realm);
2536-
if (a != null) {
2537-
ret = new BasicAuthentication (true, host, port, realm, a);
2538-
// not in cache by default - cache on success
2539-
}
2540-
} catch (java.net.MalformedURLException ignored) {
2541-
}
2542-
}
25432512
if (ret != null) {
25442513
if (!ret.setHeaders(this, p, raw)) {
25452514
ret.disposeContext();
@@ -2697,19 +2666,6 @@ private AuthenticationInfo getServerAuthentication(AuthenticationHeader authhdr)
26972666
throw new AssertionError("should not reach here");
26982667
}
26992668
}
2700-
2701-
// For backwards compatibility, we also try defaultAuth
2702-
// REMIND: Get rid of this for JDK2.0.
2703-
2704-
if (ret == null && defaultAuth != null
2705-
&& defaultAuth.schemeSupported(scheme)) {
2706-
String a = defaultAuth.authString(url, scheme, realm);
2707-
if (a != null) {
2708-
ret = new BasicAuthentication (false, url, realm, a);
2709-
// not in cache by default - cache on success
2710-
}
2711-
}
2712-
27132669
if (ret != null ) {
27142670
if (!ret.setHeaders(this, p, raw)) {
27152671
ret.disposeContext();

0 commit comments

Comments
 (0)
Please sign in to comment.