summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@collab.net>2018-12-06 14:11:37 +0900
committerDavid Pursehouse <dpursehouse@collab.net>2018-12-06 14:29:44 +0900
commit675cc068dd08f1e4dfa9ac66bc58d28296f3a3aa (patch)
tree20857590cdfd7c83e1adb14336840e0145f09c6d
parent83c2c19972ef902309dba1cfebc71aad0f805559 (diff)
KillCommand: argument value should not be final
Bug: Issue 10143 Change-Id: Idd46c6d558c2b6f2636aef143588fec199d34ac7
-rw-r--r--java/com/google/gerrit/sshd/commands/KillCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/com/google/gerrit/sshd/commands/KillCommand.java b/java/com/google/gerrit/sshd/commands/KillCommand.java
index ef12f5fc3a..df74f86366 100644
--- a/java/com/google/gerrit/sshd/commands/KillCommand.java
+++ b/java/com/google/gerrit/sshd/commands/KillCommand.java
@@ -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() {