Mark not used queue impls as @deprecated as these are not needed anymore. See #477

This commit is contained in:
norman 2012-07-30 11:10:00 +02:00
parent 26b513236f
commit 5706d6a2ec
2 changed files with 2 additions and 0 deletions

View File

@ -69,6 +69,7 @@ import java.util.concurrent.locks.LockSupport;
* Java Collections Framework</a>.
* @param <E> the type of elements held in this collection
*/
@Deprecated
public class LegacyLinkedTransferQueue<E> extends AbstractQueue<E>
implements BlockingQueue<E>, java.io.Serializable {
private static final long serialVersionUID = -3223113410248163686L;

View File

@ -80,6 +80,7 @@ import java.util.concurrent.locks.LockSupport;
* @since 1.7
* @param <E> the type of elements held in this collection
*/
@Deprecated
public class LinkedTransferQueue<E> extends AbstractQueue<E>
implements BlockingQueue<E>, java.io.Serializable {
private static final long serialVersionUID = -3223113410248163686L;