Remove unused variable.

This commit is contained in:
Justin Hileman
2022-01-21 00:38:13 -05:00
parent e7165a33b2
commit 7fd191f730
-1
View File
@@ -286,7 +286,6 @@ class Mustache_Compiler
private function blockArg($nodes, $id, $start, $end, $otag, $ctag, $level) private function blockArg($nodes, $id, $start, $end, $otag, $ctag, $level)
{ {
$key = $this->block($nodes); $key = $this->block($nodes);
$keystr = var_export($key, true);
$id = var_export($id, true); $id = var_export($id, true);
return sprintf($this->prepare(self::BLOCK_ARG, $level), $id, $key); return sprintf($this->prepare(self::BLOCK_ARG, $level), $id, $key);