Skip to content

Commit 29b0c5f

Browse files
committed
Remove unused constant
1 parent e219477 commit 29b0c5f

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

core/src/main/java/org/testcontainers/containers/GenericContainer.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@
3434
import org.jetbrains.annotations.Nullable;
3535
import org.junit.runner.Description;
3636
import org.junit.runners.model.Statement;
37-
import org.rnorth.ducttape.ratelimits.RateLimiter;
38-
import org.rnorth.ducttape.ratelimits.RateLimiterBuilder;
3937
import org.rnorth.ducttape.unreliables.Unreliables;
4038
import org.slf4j.Logger;
4139
import org.testcontainers.DockerClientFactory;
@@ -193,12 +191,6 @@ public class GenericContainer<SELF extends GenericContainer<SELF>>
193191

194192
private static final Set<String> AVAILABLE_IMAGE_NAME_CACHE = new HashSet<>();
195193

196-
private static final RateLimiter DOCKER_CLIENT_RATE_LIMITER = RateLimiterBuilder
197-
.newBuilder()
198-
.withRate(1, TimeUnit.SECONDS)
199-
.withConstantThroughput()
200-
.build();
201-
202194
@Nullable
203195
private Map<String, String> tmpFsMapping;
204196

0 commit comments

Comments
 (0)