Deleted unnecessary data parameter

This commit is contained in:
Kevin Frantz 2019-02-24 15:21:05 +01:00
parent a7509afdf2
commit ecf819196d

View File

@ -50,7 +50,6 @@ final class MVCRoutineService implements MVCRoutineServiceInterface
{ {
$view = View::create(); $view = View::create();
$view->setTemplate($this->templateNameService->getMoleculeTemplateName()); $view->setTemplate($this->templateNameService->getMoleculeTemplateName());
$view->setData($this->actionTemplateDataStore->getAllStoredData());
return $view; return $view;
} }