ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CyclicBarrier.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/CyclicBarrier.java (file contents):
Revision 1.61 by jsr166, Sat Feb 2 04:09:54 2019 UTC vs.
Revision 1.62 by dl, Fri Nov 27 17:41:59 2020 UTC

# Line 65 | Line 65 | import java.util.concurrent.locks.Reentr
65   *
66   *     // wait until done
67   *     for (Thread thread : threads)
68 < *       thread.join();
68 > *       try {
69 > *         thread.join();
70 > *       } catch (InterruptedException ex) { }
71   *   }
72   * }}</pre>
73   *

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines