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 d94ee81ed7
commit 8dbb1d8491

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;