8302696: Revert API signature changes made in JDK-8285504 and JDK-8285263

Reviewed-by: mullan
This commit is contained in:
Mark Powers 2023-04-11 14:42:44 +00:00 committed by Sean Mullan
parent 628a3f173a
commit 9486969bd3
3 changed files with 3 additions and 3 deletions

View file

@ -63,7 +63,7 @@ public class KeyManagerFactory {
* implementation-specific default if no such property exists.
*/
@SuppressWarnings("removal")
public static String getDefaultAlgorithm() {
public static final String getDefaultAlgorithm() {
String type;
type = AccessController.doPrivileged((PrivilegedAction<String>) () ->
Security.getProperty("ssl.KeyManagerFactory.algorithm"));