/**
  * Overrides DrupalDefaultEntityController::resetCache().
  */
 public function resetCache(array $ids = NULL)
 {
     if (module_exists('entitycache')) {
         EntityCacheControllerHelper::resetEntityCache($this, $ids);
     }
     parent::resetCache($ids);
 }