mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8302696: Revert API signature changes made in JDK-8285504 and JDK-8285263
Reviewed-by: mullan
This commit is contained in:
parent
628a3f173a
commit
9486969bd3
3 changed files with 3 additions and 3 deletions
|
@ -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"));
|
||||
|
|
|
@ -75,7 +75,7 @@ public class TrustManagerFactory {
|
|||
* 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.TrustManagerFactory.algorithm"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue