src/java.base/share/classes/sun/security/ssl/NewSessionTicket.java
branchJDK-8145252-TLS13-branch
changeset 56716 38c2a4078033
parent 56702 75527e40bdfd
--- a/src/java.base/share/classes/sun/security/ssl/NewSessionTicket.java	Sat Jun 09 13:38:27 2018 -0700
+++ b/src/java.base/share/classes/sun/security/ssl/NewSessionTicket.java	Sat Jun 09 21:52:54 2018 -0700
@@ -261,8 +261,8 @@
             // The new session must be a child of the existing session so
             // they will be invalidated together, etc.
             SSLSessionImpl sessionCopy = new SSLSessionImpl(shc,
-                shc.handshakeSession.getSuite(), newId,
-                shc.handshakeSession.getCreationTime());
+                    shc.handshakeSession.getSuite(), newId,
+                    shc.handshakeSession.getCreationTime());
             shc.handshakeSession.addChild(sessionCopy);
             sessionCopy.setPreSharedKey(psk);
             sessionCopy.setPskIdentity(newId.getId());
@@ -375,9 +375,9 @@
             // they will be invalidated together, etc.
             SessionId newId =
                 new SessionId(true, hc.sslContext.getSecureRandom());
-            SSLSessionImpl sessionCopy =
-                new SSLSessionImpl(hc, sessionToSave.getSuite(), newId,
-                sessionToSave.getCreationTime());
+            SSLSessionImpl sessionCopy = new SSLSessionImpl(
+                    hc, sessionToSave.getSuite(), newId,
+                    sessionToSave.getCreationTime());
             sessionToSave.addChild(sessionCopy);
             sessionCopy.setPreSharedKey(psk);
             sessionCopy.setTicketAgeAdd(nstm.ticketAgeAdd);