KillCommand: argument value should not be final

Bug: Issue 10143
Change-Id: Idd46c6d558c2b6f2636aef143588fec199d34ac7
This commit is contained in:
David Pursehouse 2018-12-06 14:11:37 +09:00
parent 83c2c19972
commit 675cc068dd
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ final class KillCommand extends SshCommand {
@Inject private DeleteTask deleteTask;
@Argument(index = 0, multiValued = true, required = true, metaVar = "ID")
private final List<String> taskIds = new ArrayList<>();
private List<String> taskIds = new ArrayList<>();
@Override
protected void run() {