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

Comparing jsr166/src/main/java/util/concurrent/CopyOnWriteArraySet.java (file contents):
Revision 1.14 by dl, Tue Jan 27 11:36:31 2004 UTC vs.
Revision 1.15 by dl, Mon Feb 9 13:28:47 2004 UTC

# Line 67 | Line 67 | public class CopyOnWriteArraySet<E> exte
67      private final CopyOnWriteArrayList<E> al;
68  
69      /**
70 <     * Constructs an empty set.
70 >     * Creates an empty set.
71       */
72      public CopyOnWriteArraySet() {
73          al = new CopyOnWriteArrayList<E>();
74      }
75  
76      /**
77 <     * Constructs a set containing all of the elements of the specified
77 >     * Creates a set containing all of the elements of the specified
78       * Collection.
79       * @param c the collection
80       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines