diff --git a/social_post_twitter.services.yml b/social_post_twitter.services.yml
index f8d9823..f20df95 100644
--- a/social_post_twitter.services.yml
+++ b/social_post_twitter.services.yml
@@ -5,6 +5,3 @@ services:
   twitter_user_entity.manager:
     class: '\Drupal\social_post_twitter\TwitterUserEntityManager'
     arguments: ['@entity_type.manager', '@current_user']
-  twitter_post.token_manager:
-    class: 'Drupal\social_post_twitter\TwitterPostTokenManager'
-    arguments: ['@token','@entity_type.manager', '@current_route_match', '@current_user', '@entity.query']
diff --git a/src/Plugin/RulesAction/Tweet.php b/src/Plugin/RulesAction/Tweet.php
index 5b7d8c2..6a30669 100644
--- a/src/Plugin/RulesAction/Tweet.php
+++ b/src/Plugin/RulesAction/Tweet.php
@@ -8,7 +8,6 @@ use Drupal\Core\Session\AccountInterface;
 use Drupal\rules\Core\RulesActionBase;
 use Drupal\social_post_twitter\Plugin\Network\TwitterPost;
 use Drupal\social_post_twitter\Plugin\Network\TwitterPostInterface;
-use Drupal\social_post_twitter\TwitterPostTokenManager;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -50,13 +49,6 @@ class Tweet extends RulesActionBase implements ContainerFactoryPluginInterface {
   protected $currentUser;
 
   /**
-   * The Twitter post token manager.
-   *
-   * @var \Drupal\social_post_twitter\TwitterPostTokenManager
-   */
-  protected $tokenManager;
-
-  /**
    * {@inheritdoc}
    */
   public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
@@ -89,16 +81,13 @@ class Tweet extends RulesActionBase implements ContainerFactoryPluginInterface {
    *   The entity type manager.
    * @param \Drupal\Core\Session\AccountInterface $current_user
    *   The current user.
-   * @param \Drupal\social_post_twitter\TwitterPostTokenManager $token_manager
-   *   The Twitter post token manager.
    */
   public function __construct(array $configuration,
                               $plugin_id,
                               $plugin_definition,
                               TwitterPostInterface $twitter_post,
                               EntityTypeManagerInterface $entity_manager,
-                              AccountInterface $current_user,
-                              TwitterPostTokenManager $token_manager) {
+                              AccountInterface $current_user) {
 
     parent::__construct($configuration, $plugin_id, $plugin_definition);
 
diff --git a/src/TwitterPostTokenManager.php b/src/TwitterPostTokenManager.php
deleted file mode 100644
index a30cca7..0000000
--- a/src/TwitterPostTokenManager.php
+++ /dev/null
@@ -1,133 +0,0 @@
-<?php
-
-namespace Drupal\social_post_twitter;
-
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Entity\Query\QueryFactory;
-use Drupal\Core\Routing\RouteMatchInterface;
-use Drupal\Core\Session\AccountInterface;
-use Drupal\Core\Utility\Token;
-
-/**
- * Process tokens for Twitter status.
- */
-class TwitterPostTokenManager {
-  /**
-   * The token utility.
-   *
-   * @var \Drupal\Core\Utility\Token
-   */
-  protected $token;
-
-  /**
-   * The entity type manager.
-   *
-   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
-   */
-  protected $entityManager;
-
-  /**
-   * The route match.
-   *
-   * @var \Drupal\Core\Routing\RouteMatchInterface
-   */
-  protected $routeMatch;
-
-  /**
-   * The current user.
-   *
-   * @var \Drupal\Core\Session\AccountInterface
-   */
-  protected $currentUser;
-
-  /**
-   * The entity query.
-   *
-   * @var \Drupal\Core\Entity\Query\QueryFactoryInterface
-   */
-  protected $entityQuery;
-
-  /**
-   * TwitterPostTokenManager constructor.
-   *
-   * @param \Drupal\Core\Utility\Token $token
-   *   The token utility.
-   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_manager
-   *   The entity type manager.
-   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
-   *   The route match.
-   * @param \Drupal\Core\Session\AccountInterface $current_user
-   *   The current user.
-   * @param \Drupal\Core\Entity\Query\QueryFactory $entity_query
-   *   The entity query.
-   */
-  public function __construct(Token $token,
-                              EntityTypeManagerInterface $entity_manager,
-                              RouteMatchInterface $route_match,
-                              AccountInterface $current_user,
-                              QueryFactory $entity_query) {
-
-    $this->token = $token;
-    $this->entityManager = $entity_manager;
-    $this->routeMatch = $route_match;
-    $this->currentUser = $current_user;
-    $this->entityQuery = $entity_query;
-  }
-
-  /**
-   * Formats the status replacing the tokens.
-   *
-   * @param string $status
-   *   The raw status value.
-   *
-   * @return string
-   *   The processed status value.
-   */
-  public function formatStatus($status) {
-    $data = $this->getDataArray($status);
-
-    return $this->token->replace($status, $data);
-  }
-
-  /**
-   * Returns the data array for token replacing.
-   *
-   * @param string $text
-   *   The string to process.
-   *
-   * @return array
-   *   The data array with entities that replace the tokens.
-   *
-   * @TODO cover all the possible tokens.
-   */
-  protected function getDataArray($text) {
-    $data = [];
-
-    $tokens = $this->token->scan($text);
-
-    foreach (array_keys($tokens) as $token) {
-      switch ($token) {
-        case 'node':
-          $node = $this->routeMatch->getParameter('node');
-          if ($node) {
-            $data['node'] = $node;
-          } else { // This approach is used when a new node is created.
-            $nid = $this->entityQuery->getAggregate('node', 'AND')
-                            ->aggregate('nid', 'MAX')
-                            ->execute()[0]['nid_max'];
-
-            $data['node'] = $this->entityManager->getStorage('node')->load($nid);
-          }
-          break;
-
-        case 'user':
-          $data['user'] = $this->entityManager->getStorage('user')->load($this->currentUser->id());
-          break;
-
-      }
-    }
-
-    return $data;
-  }
-
-}
