Mark not used queue impls as @deprecated as these are not needed anymore. See #477
This commit is contained in:
parent
26b513236f
commit
5706d6a2ec
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user