Remove getSubTypes
authorEileen McNaughton <emcnaughton@wikimedia.org>
Tue, 16 Aug 2022 20:40:16 +0000 (08:40 +1200)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Tue, 16 Aug 2022 20:40:16 +0000 (08:40 +1200)
CRM/Import/Parser.php

index 47e33d249d7502ef9e77c4307f18d7345139cc62..0c867dc8044021fdcce1b71cf1e17d344f2938ee 100644 (file)
@@ -1840,24 +1840,6 @@ abstract class CRM_Import_Parser implements UserJobInterface {
     return TRUE;
   }
 
-  /**
-   * get subtypes given the contact type
-   *
-   * @param string $contactType
-   * @return array $subTypes
-   */
-  protected function getSubtypes($contactType) {
-    $subTypes = [];
-    $types = CRM_Contact_BAO_ContactType::subTypeInfo($contactType);
-
-    if (count($types) > 0) {
-      foreach ($types as $type) {
-        $subTypes[] = $type['name'];
-      }
-    }
-    return $subTypes;
-  }
-
   /**
    * Update the status of the import row to reflect the processing outcome.
    *