1
0
mirror of https://github.com/google/nomulus synced 2026-01-08 07:11:44 +00:00

Remove unused variable "random" (#1458)

Remove variable that was rendered unused in commit
5158673f21 (consolidate all registry/TLD
classes)
This commit is contained in:
Michael Muller
2021-12-10 15:10:39 -05:00
committed by GitHub
parent 360c198f4f
commit fe0353ae7d

View File

@@ -48,7 +48,6 @@ import google.registry.request.auth.Auth;
import google.registry.util.Clock;
import google.registry.util.CloudTasksUtils;
import java.util.Optional;
import java.util.Random;
import java.util.stream.Stream;
import javax.inject.Inject;
@@ -97,8 +96,6 @@ public final class TldFanoutAction implements Runnable {
EXCLUDE_PARAM,
JITTER_SECONDS_PARAM);
private static final Random random = new Random();
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
@Inject Clock clock;