 .../aggregator/src/Entity/ItemAccessController.php | 43 ----------------------
 1 file changed, 43 deletions(-)

diff --git a/core/modules/aggregator/src/Entity/ItemAccessController.php b/core/modules/aggregator/src/Entity/ItemAccessController.php
deleted file mode 100644
index 58d3a13..0000000
--- a/core/modules/aggregator/src/Entity/ItemAccessController.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-
-/**
- * @file
- * Contains \Drupal\aggregator\ItemAccessController.
- */
-
-namespace Drupal\aggregator;
-
-use Drupal\Core\Entity\EntityAccessController;
-use Drupal\Core\Entity\EntityInterface;
-use Drupal\Core\Session\AccountInterface;
-
-/**
- * Defines an access controller for the item entity.
- *
- * @see \Drupal\aggregator\Entity\Item
- */
-class ItemAccessController extends EntityAccessController {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function checkAccess(EntityInterface $entity, $operation, $langcode, AccountInterface $account) {
-    switch ($operation) {
-      case 'view':
-        return $account->hasPermission('access news feeds');
-        break;
-
-      default:
-        return $account->hasPermission('administer news feeds');
-        break;
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
-    return $account->hasPermission('administer news feeds');
-  }
-
-}
