Skip to content

Commit

Permalink
No need for queues to be final (fix #208)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitsanw committed Mar 9, 2018
1 parent 2ac1a66 commit dab43bc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -42,7 +42,7 @@
* @param <E> the type of elements in this queue
* @author nitsanw
*/
public final class MpscLinkedAtomicQueue<E> extends BaseLinkedAtomicQueue<E> {
public class MpscLinkedAtomicQueue<E> extends BaseLinkedAtomicQueue<E> {

public MpscLinkedAtomicQueue() {
LinkedQueueAtomicNode<E> node = newNode();
Expand Down

0 comments on commit dab43bc

Please sign in to comment.