/**
  * {@inheritdoc}
  */
 public function isInRootCategoryList($category)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isInRootCategoryList');
     if (!$pluginInfo) {
         return parent::isInRootCategoryList($category);
     } else {
         return $this->___callPlugins('isInRootCategoryList', func_get_args(), $pluginInfo);
     }
 }