Remove redundant fn
authorColeman Watts <coleman@civicrm.org>
Mon, 7 Dec 2015 02:38:43 +0000 (21:38 -0500)
committerColeman Watts <coleman@civicrm.org>
Tue, 8 Dec 2015 15:40:14 +0000 (10:40 -0500)
CRM/Upgrade/Incremental/php/FourFour.php

index 1a1a95f86597eb476549a4cad9fbae62b944cf80..73399f6e67c6110bf79f932d2aefc8aa3cb06edb 100644 (file)
@@ -696,32 +696,6 @@ CREATE TABLE IF NOT EXISTS `civicrm_word_replacement` (
     return TRUE;
   }
 
-  /**
-   * Syntactic sugar for adding a task which (a) is in this class and (b) has a high priority.
-   *
-   * After passing the $funcName, you can also pass parameters that will go to
-   * the function. Note that all params must be serializable.
-   *
-   * @param string $title
-   * @param string $funcName
-   */
-  protected function addTask($title, $funcName) {
-    $queue = CRM_Queue_Service::singleton()->load(array(
-      'type' => 'Sql',
-      'name' => CRM_Upgrade_Form::QUEUE_NAME,
-    ));
-
-    $args = func_get_args();
-    $title = array_shift($args);
-    $funcName = array_shift($args);
-    $task = new CRM_Queue_Task(
-      array(get_class($this), $funcName),
-      $args,
-      $title
-    );
-    $queue->createItem($task, array('weight' => -1));
-  }
-
   /**
    * Get all the word-replacements stored in config-arrays
    * and convert them to params for the WordReplacement.create API.