Skip to content

Commit

Permalink
forgot to update number of AppVersionResult parameters on one of rece…
Browse files Browse the repository at this point in the history
…nt commits
  • Loading branch information
neowit committed Jun 16, 2017
1 parent 196968a commit dcbc258
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ResponseWriterVim(out: OutputStream, autoFlush: Boolean = true, append: Bo
case FindSymbolResult(Some(member)) => println(member.serialise.compactPrint)
case FindSymbolResult(None) => // do nothing
case ListCompletionsResult(members) => println(members.map(_.toJson).mkString("\n"))
case res @ AppVersionResult(_, _, _) => new AppVersion(this).send(res)
case res @ AppVersionResult(_, _, _, _, _) => new AppVersion(this).send(res)
case res @ BulkRetrieveActionResult(_, _, _) => new BulkRetrieve(this).send(res)
case res @ CheckSyntaxResult(_, _) => new CheckSyntax(this).send(res)
case res @ DeployAllDestructiveResult(_, _) => new DeployAllDestructive(this).send(res)
Expand Down

0 comments on commit dcbc258

Please sign in to comment.