From f34be6f13de91dabff4350e6f748995b94f45885 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Thu, 31 Jul 2014 11:27:07 +0100 Subject: [PATCH] Issue #2306439 by a_thakur: Remove _update_process_fetch_task(). --- core/modules/update/update.fetch.inc | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/core/modules/update/update.fetch.inc b/core/modules/update/update.fetch.inc index 4995d8ee725..7b71edb0287 100644 --- a/core/modules/update/update.fetch.inc +++ b/core/modules/update/update.fetch.inc @@ -32,27 +32,6 @@ function _update_fetch_data() { \Drupal::service('update.processor')->fetchData(); } -/** - * Processes a task to fetch available update data for a single project. - * - * Once the release history XML data is downloaded, it is parsed and saved in an - * entry just for that project. - * - * @param $project - * Associative array of information about the project to fetch data for. - * - * @return - * TRUE if we fetched parsable XML, otherwise FALSE. - * - * @see \Drupal\update\UpdateFetcher::processFetchTask() - * - * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0. - * Use \Drupal::service('update.processor')->processFetchTask(). - */ -function _update_process_fetch_task($project) { - return \Drupal::service('update.processor')->processFetchTask($project); -} - /** * Clears out all the available update data and initiates re-fetching. *