diff --git a/core/modules/forum/lib/Drupal/forum/Form/Overview.php b/core/modules/forum/lib/Drupal/forum/Form/Overview.php index 968d259..94a178a 100644 --- a/core/modules/forum/lib/Drupal/forum/Form/Overview.php +++ b/core/modules/forum/lib/Drupal/forum/Form/Overview.php @@ -29,15 +29,13 @@ class Overview extends OverviewTerms { /** * Constructs a \Drupal\forum\Form\OverviewForm object. * - * @param \Drupal\Core\Config\ConfigFactory $config_factory - * The factory for configuration objects. * @param \Drupal\Core\Entity\EntityManager $entity_manager * The entity manager service. * @param \Drupal\Core\Extension\ModuleHandlerInteface $module_handler * The module handler service. */ - public function __construct(ConfigFactory $config_factory, EntityManager $entity_manager, ModuleHandlerInterface $module_handler) { - parent::__construct($config_factory, $module_handler); + public function __construct(EntityManager $entity_manager, ModuleHandlerInterface $module_handler) { + parent::__construct($module_handler); $this->entityManager = $entity_manager; } @@ -46,7 +44,6 @@ public function __construct(ConfigFactory $config_factory, EntityManager $entity */ public static function create(ContainerInterface $container) { return new static( - $container->get('config.factory'), $container->get('entity.manager'), $container->get('module_handler') );