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

Comparing jsr166/src/main/java/util/concurrent/FutureTask.java (file contents):
Revision 1.41 by jsr166, Sun Jun 12 00:36:30 2005 UTC vs.
Revision 1.42 by dl, Mon Jun 13 18:41:48 2005 UTC

# Line 144 | Line 144 | public class FutureTask<V> implements Ru
144       * Uses AQS sync state to represent run status
145       */
146      private final class Sync extends AbstractQueuedSynchronizer {
147 +        private static final long serialVersionUID = -7828117401763700385L;
148 +
149          /** State value representing that task is running */
150          private static final int RUNNING   = 1;
151          /** State value representing that task ran */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines