jdk/src/share/classes/sun/security/ssl/SSLContextImpl.java
changeset 21278 ef8a3a2a72f2
parent 14664 e71aa0962e70
child 22068 95a7a3cd72a0
--- a/jdk/src/share/classes/sun/security/ssl/SSLContextImpl.java	Tue Oct 29 16:35:20 2013 +0400
+++ b/jdk/src/share/classes/sun/security/ssl/SSLContextImpl.java	Tue Oct 29 17:01:06 2013 +0400
@@ -243,7 +243,7 @@
     abstract SSLParameters getDefaultClientSSLParams();
     abstract SSLParameters getSupportedSSLParams();
 
-    // Get suported ProtoclList.
+    // Get supported ProtocolList.
     ProtocolList getSuportedProtocolList() {
         if (supportedProtocolList == null) {
             supportedProtocolList =
@@ -253,7 +253,7 @@
         return supportedProtocolList;
     }
 
-    // Get default ProtoclList.
+    // Get default ProtocolList.
     ProtocolList getDefaultProtocolList(boolean roleIsServer) {
         if (roleIsServer) {
             if (defaultServerProtocolList == null) {
@@ -272,7 +272,7 @@
         }
     }
 
-    // Get suported CipherSuiteList.
+    // Get supported CipherSuiteList.
     CipherSuiteList getSupportedCipherSuiteList() {
         // The maintenance of cipher suites needs to be synchronized.
         synchronized (this) {