Skip to content

Commit

Permalink
Merge pull request #231 from franz1981/not_final_mpsc_linked_atomic_q
Browse files Browse the repository at this point in the history
Fixes #208: MpscLinkedAtomicQueue can be made not final
  • Loading branch information
kay committed Mar 3, 2019
2 parents 639c6df + e7101bf commit 23432e5
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 23432e5

Please sign in to comment.