Remove now redundant param
authoreileen <emcnaughton@wikimedia.org>
Sat, 20 Jul 2019 00:45:18 +0000 (12:45 +1200)
committereileen <emcnaughton@wikimedia.org>
Mon, 29 Jul 2019 22:27:40 +0000 (10:27 +1200)
CRM/Export/BAO/Export.php

index 87aba60b69318f39d528d967ca4e2d6443dad2ed..d8c1ea0f54d1eb5a5fc2ba6009570a28796791d7 100644 (file)
@@ -217,7 +217,7 @@ INSERT INTO {$componentTable} SELECT distinct gc.contact_id FROM civicrm_group_c
       // In order to be able to write a unit test against this function we need to suppress
       // the csv writing. In future hopefully the csv writing & the main processing will be in separate functions.
       if (empty($exportParams['suppress_csv_for_testing'])) {
-        self::writeCSVFromTable($headerRows, $sqlColumns, $processor);
+        self::writeCSVFromTable($headerRows, $processor);
       }
       else {
         // return tableName sqlColumns headerRows in test context
@@ -375,10 +375,9 @@ VALUES $sqlValueString
 
   /**
    * @param $headerRows
-   * @param $sqlColumns
    * @param \CRM_Export_BAO_ExportProcessor $processor
    */
-  public static function writeCSVFromTable($headerRows, $sqlColumns, $processor) {
+  public static function writeCSVFromTable($headerRows, $processor) {
     $exportTempTable = $processor->getTemporaryTable();
     $writeHeader = TRUE;
     $offset = 0;