src/java.base/share/classes/sun/security/ssl/TransportContext.java
changeset 51574 ed52ea83f830
parent 51456 d0e2e34eec65
child 53056 9041178a0b69
--- a/src/java.base/share/classes/sun/security/ssl/TransportContext.java	Tue Aug 21 13:44:59 2018 +0100
+++ b/src/java.base/share/classes/sun/security/ssl/TransportContext.java	Tue Aug 21 11:30:48 2018 -0700
@@ -63,6 +63,7 @@
     boolean                         isInputCloseNotified = false;
     boolean                         peerUserCanceled = false;
     Exception                       closeReason = null;
+    Exception                       delegatedThrown = null;
 
     // negotiated security parameters
     SSLSessionImpl                  conSession;
@@ -364,12 +365,12 @@
             }
         }
 
-        // terminal handshake context
+        // terminate the handshake context
         if (handshakeContext != null) {
             handshakeContext = null;
         }
 
-        // terminal the transport
+        // terminate the transport
         try {
             transport.shutdown();
         } catch (IOException ioe) {