From 17e7dbac240b3612fa9b908a25860e84021353c5 Mon Sep 17 00:00:00 2001
From: webchick <drupal@webchick.net>
Date: Fri, 11 Jul 2014 22:55:11 -0700
Subject: [PATCH] Issue #2300831 by joshi.rohit100: Remove module_exists() as
 it is deprecated.

---
 core/includes/bootstrap.inc | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc
index 31cce8154e3e..7f8b3da843ae 100644
--- a/core/includes/bootstrap.inc
+++ b/core/includes/bootstrap.inc
@@ -1161,18 +1161,6 @@ function drupal_alter($type, &$data, &$context1 = NULL, &$context2 = NULL) {
   return \Drupal::moduleHandler()->alter($type, $data, $context1, $context2);
 }
 
-/**
- * Determines whether a given module exists.
- *
- * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
- *   Use \Drupal::moduleHandler()->moduleExists($module).
- *
- * @see \Drupal\Core\Extension\ModuleHandler::moduleExists()
- */
-function module_exists($module) {
-  return \Drupal::moduleHandler()->moduleExists($module);
-}
-
 /**
  * Returns the test prefix if this is an internal request from SimpleTest.
  *
-- 
GitLab