LessCompiler: remove obsolete cache-related comment

This commit is contained in:
Thomas Gelf 2014-09-05 10:54:42 +02:00
parent ab71b1cf1c
commit b14e7f5696
1 changed files with 0 additions and 10 deletions

View File

@ -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);
}