diff --git a/library/Icinga/Web/LessCompiler.php b/library/Icinga/Web/LessCompiler.php index 319982ee8..16514cf6d 100644 --- a/library/Icinga/Web/LessCompiler.php +++ b/library/Icinga/Web/LessCompiler.php @@ -86,16 +86,6 @@ class LessCompiler public function compile() { - //TODO: -/* $tmpfile = '/tmp/icinga.less'; - $cssfile = '/tmp/icinga.css'; - if (! file_exists($tmpfile)) { - file_put_contents($tmpfile, $this->source); - } - if ($this->lessc->checkedCompile($tmpfile, $cssfile)) { - } - return file_get_contents($cssfile); -*/ return $this->lessc->compile($this->source); }