--- jsr166/src/jsr166x/BlockingDeque.java 2004/12/05 21:15:31 1.1 +++ jsr166/src/jsr166x/BlockingDeque.java 2009/11/16 04:16:42 1.2 @@ -6,7 +6,7 @@ package jsr166x; // XXX This belongs in java.util!!! XXX import java.util.concurrent.*; // XXX This import goes away XXX -import java.util.*; +import java.util.*; /** * A {@link Deque} that additionally supports operations that wait for @@ -32,7 +32,7 @@ import java.util.*; * {@link #putFirst putFirst(e)} * {@link #offerFirst(Object, long, TimeUnit) offerFirst(e, time, unit)} * {@link #putLast putLast(e)} - * {@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)} + * {@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)} * * * Remove @@ -194,7 +194,7 @@ public interface BlockingDeque extend */ void put(E o) throws InterruptedException; - /** + /** * Inserts the specified element as the lest element of this * deque, if possible. When using deques that may impose * insertion restrictions (for example capacity bounds), method @@ -214,7 +214,7 @@ public interface BlockingDeque extend /** * Retrieves and removes the first element of this deque, waiting * if no elements are present on this deque. - * This method is equivalent to to takeFirst + * This method is equivalent to to takeFirst * @return the head of this deque * @throws InterruptedException if interrupted while waiting. */