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

Comparing jsr166/src/main/java/util/concurrent/CountDownLatch.java (file contents):
Revision 1.26 by jsr166, Wed May 18 03:47:17 2005 UTC vs.
Revision 1.27 by dl, Mon Jun 13 18:42:03 2005 UTC

# Line 128 | Line 128 | public class CountDownLatch {
128       * Uses AQS state to represent count.
129       */
130      private static final class Sync extends AbstractQueuedSynchronizer {
131 +        private static final long serialVersionUID = 4982264981922014374L;
132 +
133          Sync(int count) {
134              setState(count);
135          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines