Skip to content

Commit

Permalink
Reduce visibility of utility parent, previous made visible for experi…
Browse files Browse the repository at this point in the history
…mentation only
  • Loading branch information
nitsanw committed Jan 8, 2019
1 parent 6b8feea commit 129406f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ abstract class ConcurrentCircularArrayQueueL0Pad<E> extends AbstractQueue<E>
* @param <E>
* @author nitsanw
*/
public abstract class ConcurrentCircularArrayQueue<E> extends ConcurrentCircularArrayQueueL0Pad<E>
abstract class ConcurrentCircularArrayQueue<E> extends ConcurrentCircularArrayQueueL0Pad<E>
{
protected final long mask;
protected final E[] buffer;

public ConcurrentCircularArrayQueue(int capacity)
ConcurrentCircularArrayQueue(int capacity)
{
int actualCapacity = Pow2.roundToPowerOfTwo(capacity);
mask = actualCapacity - 1;
Expand Down

0 comments on commit 129406f

Please sign in to comment.