Get rid of unused argument in inlineCss

[MAILPOET-1891]
This commit is contained in:
Rostislav Wolny
2019-04-04 10:48:26 +02:00
committed by M. Shull
parent c2f5a98893
commit bc32e5f6f3
3 changed files with 7 additions and 11 deletions

View File

@ -167,7 +167,7 @@ class Renderer {
* @return DomNode
*/
private function inlineCSSStyles($template) {
return $this->CSS_inliner->inlineCSS(null, $template);
return $this->CSS_inliner->inlineCSS($template);
}
/**