From 87a58dbcae7d0029db82a25eb49fcd52818a4de1 Mon Sep 17 00:00:00 2001 From: mmuller Date: Mon, 2 Apr 2018 13:38:41 -0700 Subject: [PATCH] Remove unused variable from ShellCommandTest ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=191340225 --- javatests/google/registry/tools/ShellCommandTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/javatests/google/registry/tools/ShellCommandTest.java b/javatests/google/registry/tools/ShellCommandTest.java index 59c9323bd..e48126a7a 100644 --- a/javatests/google/registry/tools/ShellCommandTest.java +++ b/javatests/google/registry/tools/ShellCommandTest.java @@ -50,7 +50,6 @@ public class ShellCommandTest { @Test public void testCommandProcessing() { String testData = "test1 foo bar\ntest2 foo bar\n"; - ImmutableMap> commandMap = ImmutableMap.of(); MockCli cli = new MockCli(); ShellCommand shellCommand = new ShellCommand(new ByteArrayInputStream(testData.getBytes(US_ASCII)), cli);