7199066: Typo in method name
Reviewed-by: mullan
This commit is contained in:
parent
cd25bf4b6e
commit
b8e234fb52
@ -266,7 +266,7 @@ public abstract class SSLContextImpl extends SSLContextSpi {
|
||||
}
|
||||
|
||||
// Get suported CipherSuiteList.
|
||||
CipherSuiteList getSuportedCipherSuiteList() {
|
||||
CipherSuiteList getSupportedCipherSuiteList() {
|
||||
// The maintenance of cipher suites needs to be synchronized.
|
||||
synchronized (this) {
|
||||
// Clear cache of available ciphersuites.
|
||||
|
@ -1978,7 +1978,7 @@ final public class SSLEngineImpl extends SSLEngine {
|
||||
* @return an array of cipher suite names
|
||||
*/
|
||||
public String[] getSupportedCipherSuites() {
|
||||
return sslContext.getSuportedCipherSuiteList().toStringArray();
|
||||
return sslContext.getSupportedCipherSuiteList().toStringArray();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -113,7 +113,7 @@ public class SSLServerSocketFactoryImpl extends SSLServerSocketFactory
|
||||
* @return an array of cipher suite names
|
||||
*/
|
||||
public String[] getSupportedCipherSuites() {
|
||||
return context.getSuportedCipherSuiteList().toStringArray();
|
||||
return context.getSupportedCipherSuiteList().toStringArray();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -168,7 +168,7 @@ class SSLServerSocketImpl extends SSLServerSocket
|
||||
* @return an array of cipher suite names
|
||||
*/
|
||||
public String[] getSupportedCipherSuites() {
|
||||
return sslContext.getSuportedCipherSuiteList().toStringArray();
|
||||
return sslContext.getSupportedCipherSuiteList().toStringArray();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -177,6 +177,6 @@ final public class SSLSocketFactoryImpl extends SSLSocketFactory {
|
||||
* certain kinds of certificates to use certain cipher suites.
|
||||
*/
|
||||
public String[] getSupportedCipherSuites() {
|
||||
return context.getSuportedCipherSuiteList().toStringArray();
|
||||
return context.getSupportedCipherSuiteList().toStringArray();
|
||||
}
|
||||
}
|
||||
|
@ -2353,7 +2353,7 @@ final public class SSLSocketImpl extends BaseSSLSocketImpl {
|
||||
* @return an array of cipher suite names
|
||||
*/
|
||||
public String[] getSupportedCipherSuites() {
|
||||
return sslContext.getSuportedCipherSuiteList().toStringArray();
|
||||
return sslContext.getSupportedCipherSuiteList().toStringArray();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user