Remove another no-longer-used function
authorEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 15 Aug 2022 22:24:04 +0000 (10:24 +1200)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 15 Aug 2022 22:24:04 +0000 (10:24 +1200)
CRM/Import/Parser.php

index 6ad756ed7408cf78f4745542baf2a1082b3af476..21de5136ead3d879c2bdb7f9bbdb78ebf918d7a3 100644 (file)
@@ -452,24 +452,6 @@ abstract class CRM_Import_Parser implements UserJobInterface {
     $this->_maxLinesToProcess = 0;
   }
 
-  /**
-   * Set and validate field values.
-   *
-   * @param array $elements
-   *   array.
-   */
-  public function setActiveFieldValues($elements): void {
-    $maxCount = count($elements) < $this->_activeFieldCount ? count($elements) : $this->_activeFieldCount;
-    for ($i = 0; $i < $maxCount; $i++) {
-      $this->_activeFields[$i]->setValue($elements[$i]);
-    }
-
-    // reset all the values that we did not have an equivalent import element
-    for (; $i < $this->_activeFieldCount; $i++) {
-      $this->_activeFields[$i]->resetValue();
-    }
-  }
-
   /**
    * Format the field values for input to the api.
    *