--- jsr166/src/main/java/util/LinkedList.java 2005/12/05 02:56:59 1.42 +++ jsr166/src/main/java/util/LinkedList.java 2006/05/28 23:36:29 1.45 @@ -6,7 +6,6 @@ */ package java.util; -import java.util.*; // for javadoc (till 6280605 is fixed) /** * Linked list implementation of the List interface. Implements all @@ -60,7 +59,7 @@ import java.util.*; // for javadoc (till * should be used only to detect bugs. * *

This class is a member of the - * + * * Java Collections Framework. * * @author Josh Bloch @@ -798,6 +797,9 @@ public class LinkedList return result; } + /** + * @since 1.6 + */ public Iterator descendingIterator() { return new DescendingIterator(); }