Skip to content

Commit

Permalink
Keep constructor private
Browse files Browse the repository at this point in the history
  • Loading branch information
andreidan committed Jun 13, 2024
1 parent 4942047 commit 89bd275
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,11 +365,11 @@ public Thread newThread(Runnable r) {
*/
private EsExecutors() {}

public static class ExecutorScalingQueue<E> extends LinkedTransferQueue<E> {
static class ExecutorScalingQueue<E> extends LinkedTransferQueue<E> {

ThreadPoolExecutor executor;

public ExecutorScalingQueue() {}
ExecutorScalingQueue() {}

@Override
public boolean offer(E e) {
Expand Down

0 comments on commit 89bd275

Please sign in to comment.