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

Comparing jsr166/src/main/java/util/concurrent/Exchanger.java (file contents):
Revision 1.20 by dl, Mon Jun 13 18:41:34 2005 UTC vs.
Revision 1.21 by jsr166, Sun Jun 19 23:13:42 2005 UTC

# Line 6 | Line 6
6   */
7  
8   package java.util.concurrent;
9 + import java.util.concurrent.*; // for javadoc (till 6280605 is fixed)
10   import java.util.concurrent.locks.*;
11   import java.util.concurrent.atomic.*;
12   import java.util.Random;
# Line 219 | Line 220 | public class Exchanger<V> {
220       */
221      static final class Node extends AtomicReference<Object> {
222          private static final long serialVersionUID = -3221313401284163686L;
223 <        
223 >
224          /** The element offered by the Thread creating this node. */
225          final Object item;
226          /** The Thread creating this node. */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines