CRM-14885 - CRM_Core_CodeGen_Main - Remove unused functions
authorTim Otten <totten@civicrm.org>
Wed, 27 Jul 2016 07:35:53 +0000 (00:35 -0700)
committerTim Otten <totten@civicrm.org>
Thu, 28 Jul 2016 00:20:16 +0000 (17:20 -0700)
CRM/Core/CodeGen/Main.php

index bb33c756084d67d9940eaee417c0d61fcad7eb62..51b741310da6ba802dc42807cd4690800625d2b2 100644 (file)
@@ -126,28 +126,6 @@ Alternatively you can get a version of CiviCRM that matches your PHP version
     return $tasks;
   }
 
-  /**
-   * @return array
-   */
-  public function getExpectedFiles() {
-    return array(
-      $this->sqlCodePath . '/civicrm.mysql',
-      $this->phpCodePath . '/CRM/Contact/DAO/Contact.php',
-    );
-  }
-
-  /**
-   * @return bool
-   */
-  public function hasExpectedFiles() {
-    foreach ($this->getExpectedFiles() as $file) {
-      if (!file_exists($file)) {
-        return FALSE;
-      }
-    }
-    return TRUE;
-  }
-
   /**
    * Compute a digest based on the GenCode logic (PHP/tpl).
    *