diff --git a/modules/translators_content/src/LocalTasks/TranslatorsContentLocalTasksSubscriber.php b/modules/translators_content/src/LocalTasks/TranslatorsContentLocalTasksSubscriber.php
deleted file mode 100644
index bce360c..0000000
--- a/modules/translators_content/src/LocalTasks/TranslatorsContentLocalTasksSubscriber.php
+++ /dev/null
@@ -1,49 +0,0 @@
-<?php
-
-namespace Drupal\translators_content\LocalTasks;
-
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Routing\RouteSubscriberBase;
-use Symfony\Component\Routing\RouteCollection;
-
-/**
- * Class TranslatorsContentLocalTasksSubscriber.
- *
- * @package Drupal\translators_content\LocalTasks
- */
-class TranslatorsContentLocalTasksSubscriber extends RouteSubscriberBase {
-
-  /**
-   * Entity type manager.
-   *
-   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
-   */
-  protected $entityTypeManager;
-
-  /**
-   * TranslatorsContentLocalTasksSubscriber constructor.
-   *
-   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $manager
-   *   Entity type manager.
-   */
-  public function __construct(EntityTypeManagerInterface $manager) {
-    $this->entityTypeManager = $manager;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function alterRoutes(RouteCollection $collection) {
-    $entity_types = array_keys($this->entityTypeManager->getDefinitions());
-
-    foreach ($entity_types as $entity_type) {
-      $route = $collection->get("entity.$entity_type.edit_form");
-      if (!empty($route)) {
-        $route->addRequirements([
-          '_access_checks' => 'content_translation.manage_access',
-        ]);
-      }
-    }
-  }
-
-}
diff --git a/modules/translators_content/translators_content.services.yml b/modules/translators_content/translators_content.services.yml
index 68ee99c..b3c812e 100755
--- a/modules/translators_content/translators_content.services.yml
+++ b/modules/translators_content/translators_content.services.yml
@@ -4,8 +4,3 @@ services:
     arguments: ['@content_translation.manager']
     tags:
       - { name: event_subscriber }
-  translators_content.local_tasks_subscriber:
-    class: Drupal\translators_content\LocalTasks\TranslatorsContentLocalTasksSubscriber
-    tags:
-    - { name: event_subscriber }
-    arguments: ['@entity_type.manager']
