Skip to content

Commit a242858

Browse files
committed
Remove unused constructor
1 parent 030b1d9 commit a242858

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

  • dogstatsd-http-forwarder/src/main/java/com/datadoghq/dogstatsd/http/forwarder

dogstatsd-http-forwarder/src/main/java/com/datadoghq/dogstatsd/http/forwarder/BoundedQueue.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ public int compareTo(Key o) {
6363
Condition notEmpty = lock.newCondition();
6464
Condition notFull = lock.newCondition();
6565

66-
BoundedQueue(long maxBytes, long maxTries, WhenFull whenFull) {
67-
this(maxBytes, maxTries, whenFull, null);
68-
}
69-
7066
BoundedQueue(long maxBytes, long maxTries, WhenFull whenFull, Telemetry telemetry) {
7167
this(maxBytes, maxTries, whenFull, telemetry, System::nanoTime);
7268
}

0 commit comments

Comments
 (0)