jdk/src/share/classes/sun/security/ssl/Handshaker.java
changeset 14664 e71aa0962e70
parent 14229 40fbffe104bd
child 14675 17224d0282f1
equal deleted inserted replaced
14663:49b7de969579 14664:e71aa0962e70
   818          */
   818          */
   819         if ((conn != null) || expectingFinished) {
   819         if ((conn != null) || expectingFinished) {
   820             processLoop();
   820             processLoop();
   821         } else {
   821         } else {
   822             delegateTask(new PrivilegedExceptionAction<Void>() {
   822             delegateTask(new PrivilegedExceptionAction<Void>() {
       
   823                 @Override
   823                 public Void run() throws Exception {
   824                 public Void run() throws Exception {
   824                     processLoop();
   825                     processLoop();
   825                     return null;
   826                     return null;
   826                 }
   827                 }
   827             });
   828             });