예제 #1
0
 /**
  * Skip this step when we're running a full reindex as tables are empty
  *
  * @param int $storeId
  *
  * @return Mage_Catalog_Model_Resource_Eav_Mysql4_Url
  */
 public function clearStoreInvalidRewrites($storeId)
 {
     if (true === $this->_isFastIndexerFullReindex) {
         return $this;
     }
     parent::clearStoreInvalidRewrites($storeId);
     return $this;
 }