diff --git a/acquia_search.module b/acquia_search.module
index 1f564e5..a99a40d 100644
--- a/acquia_search.module
+++ b/acquia_search.module
@@ -6,7 +6,7 @@
  *   Integration between Acquia Drupal and Acquia's hosted solr search service.
  */
 
-define('ACQUIA_SEARCH_VERSION', "6.x-1.5701");
+define('ACQUIA_SEARCH_VERSION', "6.x-1.5702");
 
 /**
  * Implementation of hook_enable().
@@ -386,24 +386,3 @@ function _acquia_search_hmac($key, $string) {
   return sha1((str_pad($key, 64, chr(0x00)) ^ (str_repeat(chr(0x5c), 64))) . pack("H*", sha1((str_pad($key, 64, chr(0x00)) ^ (str_repeat(chr(0x36), 64))) . $string)));
 }
 
-/**
- * Implementation of hook_update_status_alter().
- *
- * This function disables the reporting of apachesolr update notifications
- * if the acquia_search module is enabled.  When the administrator updates
- * the acquia_search module, the apachesolr module is also updated, so there
- * is no need for both.
- *
- * @param $projects
- *   Reference to an array of information about available updates to each
- *   project installed on the system.
- *
- * @see update_calculate_project_data()
- */
-function acquia_search_update_status_alter(&$projects) {
-  // If we are running Acquia Drupal, acquia_agent handles this.
-  if (!acquia_agent_has_update_service() && isset($projects['apachesolr'])) {
-    $projects['acquia_search']['includes']['apachesolr'] = $projects['apachesolr']['title'];
-    unset($projects['apachesolr']);
-  }
-}
