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.50 by jsr166, Wed May 15 19:43:16 2013 UTC vs.
Revision 1.51 by jsr166, Sat May 3 21:05:50 2014 UTC

# Line 129 | Line 129 | public class CyclicBarrier {
129      private final Condition trip = lock.newCondition();
130      /** The number of parties */
131      private final int parties;
132 <    /* The command to run when tripped */
132 >    /** The command to run when tripped */
133      private final Runnable barrierCommand;
134      /** The current generation */
135      private Generation generation = new Generation();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines