Skip to content

Commit

Permalink
Fixes JCTools#208: MpscLinkedAtomicQueue can be made not final
Browse files Browse the repository at this point in the history
  • Loading branch information
franz1981 committed Mar 1, 2019
1 parent 1e638a6 commit e7101bf
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 e7101bf

Please sign in to comment.