Remove some no-longer-used properties
authorEileen McNaughton <emcnaughton@wikimedia.org>
Sun, 19 Mar 2023 00:35:33 +0000 (13:35 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Sun, 19 Mar 2023 00:43:47 +0000 (13:43 +1300)
CRM/Contribute/Import/Parser/Contribution.php

index a379e26bff48ad0cb671ccfea1aefc3d4acfd866..e85444c370f8be7b0db1211868aba392f243e41c 100644 (file)
@@ -68,56 +68,12 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser {
    */
   protected $_separator;
 
-  /**
-   * Running total number of valid soft credit rows
-   * @var int
-   */
-  protected $_validSoftCreditRowCount;
-
-  /**
-   * Running total number of invalid soft credit rows
-   * @var int
-   */
-  protected $_invalidSoftCreditRowCount;
-
-  /**
-   * Running total number of valid pledge payment rows
-   * @var int
-   */
-  protected $_validPledgePaymentRowCount;
-
-  /**
-   * Running total number of invalid pledge payment rows
-   * @var int
-   */
-  protected $_invalidPledgePaymentRowCount;
-
   /**
    * Array of pledge payment error lines, bounded by MAX_ERROR
    * @var array
    */
   protected $_pledgePaymentErrors;
 
-  /**
-   * Array of pledge payment error lines, bounded by MAX_ERROR
-   * @var array
-   */
-  protected $_softCreditErrors;
-
-  /**
-   * Filename of pledge payment error data
-   *
-   * @var string
-   */
-  protected $_pledgePaymentErrorsFileName;
-
-  /**
-   * Filename of soft credit error data
-   *
-   * @var string
-   */
-  protected $_softCreditErrorsFileName;
-
   /**
    * Get the field mappings for the import.
    *
@@ -561,15 +517,6 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser {
     return FALSE;
   }
 
-  /**
-   * Get the array of successfully imported contribution id's
-   *
-   * @return array
-   */
-  public function &getImportedContributions() {
-    return $this->_newContributions;
-  }
-
   /**
    * take the input parameter list as specified in the data model and
    * convert it into the same format that we use in QF and BAO object