From f2fe78a9a86f7dcd04f32c87ea611df345893143 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Thu, 11 Feb 2016 14:26:59 +0000
Subject: [PATCH] Issue #2659986 by lluvigne: Remove
 \Drupal\views\Plugin\views\HandlerBase::$actualField and
 \Drupal\views\Plugin\views\HandlerBase::$actualField

---
 .../views/src/Plugin/views/HandlerBase.php    | 23 -------------------
 1 file changed, 23 deletions(-)

diff --git a/core/modules/views/src/Plugin/views/HandlerBase.php b/core/modules/views/src/Plugin/views/HandlerBase.php
index b5bb16d6f9b9..c3f6ca8ddb5e 100644
--- a/core/modules/views/src/Plugin/views/HandlerBase.php
+++ b/core/modules/views/src/Plugin/views/HandlerBase.php
@@ -49,13 +49,6 @@ abstract class HandlerBase extends PluginBase implements ViewsHandlerInterface {
    */
   public $tableAlias;
 
-  /**
-   * When a table has been moved this property is set.
-   *
-   * @var string
-   */
-  public $actualTable;
-
   /**
    * The actual field in the database table, maybe different
    * on other kind of query plugins/special handlers.
@@ -71,13 +64,6 @@ abstract class HandlerBase extends PluginBase implements ViewsHandlerInterface {
    */
   public $field;
 
-  /**
-   * When a field has been moved this property is set.
-   *
-   * @var string
-   */
-  public $actualField;
-
   /**
    * The relationship used for this field.
    *
@@ -124,15 +110,6 @@ public function init(ViewExecutable $view, DisplayPluginBase $display, array &$o
     // we have to do a lookup because the type is singular but the
     // option is stored as the plural.
 
-    // If the 'moved to' keyword moved our handler, let's fix that now.
-    if (isset($this->actualTable)) {
-      $options['table'] = $this->actualTable;
-    }
-
-    if (isset($this->actualField)) {
-      $options['field'] = $this->actualField;
-    }
-
     $this->unpackOptions($this->options, $options);
 
     // This exist on most handlers, but not all. So they are still optional.
-- 
GitLab