From 6695406980d00edbf84ed1c76bfc7421fb93eedb Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Thu, 27 Oct 2016 21:47:13 -0700
Subject: [PATCH] Issue #2645164 by kekkis, quietone, heddn, Lars Toomre: Fix
 use of $sourceValues and $destinationValues local variables

---
 core/modules/migrate/src/MigrateExecutable.php | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/core/modules/migrate/src/MigrateExecutable.php b/core/modules/migrate/src/MigrateExecutable.php
index 9c27514228f4..0488d9665622 100644
--- a/core/modules/migrate/src/MigrateExecutable.php
+++ b/core/modules/migrate/src/MigrateExecutable.php
@@ -66,13 +66,6 @@ class MigrateExecutable implements MigrateExecutableInterface {
    */
   protected $counts = array();
 
-  /**
-   * The object currently being constructed.
-   *
-   * @var \stdClass
-   */
-  protected $destinationValues;
-
   /**
    * The source.
    *
@@ -80,13 +73,6 @@ class MigrateExecutable implements MigrateExecutableInterface {
    */
   protected $source;
 
-  /**
-   * The current data row retrieved from the source.
-   *
-   * @var \stdClass
-   */
-  protected $sourceValues;
-
   /**
    * The event dispatcher.
    *
@@ -277,8 +263,6 @@ public function import() {
         }
       }
 
-      // Reset row properties.
-      unset($sourceValues, $destinationValues);
       $this->sourceRowStatus = MigrateIdMapInterface::STATUS_IMPORTED;
 
       // Check for memory exhaustion.
-- 
GitLab