Skip to content

Commit

Permalink
chore: improve tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mvallim committed Feb 23, 2024
1 parent 7bf7bef commit 7a92082
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,13 @@
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.ReentrantLock;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import lombok.Getter;
import lombok.Setter;
import lombok.SneakyThrows;

@SuppressWarnings({ "java:S2274", "unchecked" })
public class RingBufferBlockingQueue<E> extends AbstractQueue<E> implements BlockingQueue<E> {

private static final Logger LOGGER = LoggerFactory.getLogger(RingBufferBlockingQueue.class);

private static final int DEFAULT_CAPACITY = 2048;

private final Entry<E>[] buffer;
Expand Down

0 comments on commit 7a92082

Please sign in to comment.