Remove unused private function
authoreileen <emcnaughton@wikimedia.org>
Wed, 31 Mar 2021 00:35:22 +0000 (13:35 +1300)
committereileen <emcnaughton@wikimedia.org>
Wed, 31 Mar 2021 00:35:22 +0000 (13:35 +1300)
CRM/Dedupe/Merger.php

index 59bc053582bdac69c8bb83fe71689c110dee74f7..579cb31da9506fecdfdd5b5eab1b2a43d82d0a75 100644 (file)
@@ -661,33 +661,6 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
     CRM_Contact_BAO_Contact::create($data);
   }
 
-  /**
-   * Given a contact ID, will check if a record exists in given table.
-   *
-   * @param int $contactID
-   * @param string $table
-   * @param string $idField
-   *   Field where the contact's ID is stored in the table
-   *
-   * @return bool
-   *   True if a record is found for the given contact ID, false otherwise
-   */
-  private static function customRecordExists($contactID, $table, $idField) {
-    $sql = "
-      SELECT COUNT(*) AS count
-      FROM $table
-      WHERE $idField = $contactID
-    ";
-    $dbResult = CRM_Core_DAO::executeQuery($sql);
-    $dbResult->fetch();
-
-    if ($dbResult->count > 0) {
-      return TRUE;
-    }
-
-    return FALSE;
-  }
-
   /**
    * Load all non-empty fields for the contacts
    *