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

Comparing jsr166/src/main/java/util/LinkedList.java (file contents):
Revision 1.34 by dl, Wed May 25 14:05:06 2005 UTC vs.
Revision 1.35 by jsr166, Sun May 29 16:36:48 2005 UTC

# Line 92 | Line 92 | public class LinkedList<E>
92       * @param  c the collection whose elements are to be placed into this list
93       * @throws NullPointerException if the specified collection is null
94       */
95 <     public LinkedList(Collection<? extends E> c) {
96 <         this();
97 <         addAll(c);
98 <     }
95 >    public LinkedList(Collection<? extends E> c) {
96 >        this();
97 >        addAll(c);
98 >    }
99  
100      /**
101       * Returns the first element in this list.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines