From 672ac3f9df6ddd74300c938158a302433d2ca095 Mon Sep 17 00:00:00 2001
From: webchick <webchick@24967.no-reply.drupal.org>
Date: Fri, 21 Mar 2014 10:29:26 -0700
Subject: [PATCH] Issue #2204143 by sun, ianthomas_uk: Remove deprecated
 drupal_explode_tags() and drupal_implode_tags().

---
 core/includes/common.inc | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/core/includes/common.inc b/core/includes/common.inc
index 5da17073901e..b7dfde2c4ac9 100644
--- a/core/includes/common.inc
+++ b/core/includes/common.inc
@@ -4840,31 +4840,6 @@ function watchdog_severity_levels() {
   );
 }
 
-
-/**
- * Explodes a string of tags into an array.
- *
- * @see drupal_implode_tags()
- *
- * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
- *   Use \Drupal\Component\Utility\Tags::explode().
- */
-function drupal_explode_tags($tags) {
-  return Tags::explode($tags);
-}
-
-/**
- * Implodes an array of tags into a string.
- *
- * @see drupal_explode_tags()
- *
- * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
- *   Use \Drupal\Component\Utility\Tags::implode().
- */
-function drupal_implode_tags($tags) {
-  return Tags::implode($tags);
-}
-
 /**
  * Flushes all persistent caches, resets all variables, and rebuilds all data structures.
  *
-- 
GitLab