From 99b14a929052834c79f73f97ec17153c0b7c4c77 Mon Sep 17 00:00:00 2001
From: Chris Leppanen <chris.leppanen@gmail.com>
Date: Mon, 15 Dec 2014 18:50:31 -0800
Subject: [PATCH] Remove unused code from common_syndication_parser.inc.

---
 libraries/common_syndication_parser.inc | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/libraries/common_syndication_parser.inc b/libraries/common_syndication_parser.inc
index 95899509..d37599f4 100644
--- a/libraries/common_syndication_parser.inc
+++ b/libraries/common_syndication_parser.inc
@@ -38,18 +38,6 @@ function common_syndication_parser_parse($string) {
   return FALSE;
 }
 
-/**
- * Get the cached version of the <var>$url</var>
- */
-function _parser_common_syndication_cache_get($url) {
-  $cache_file = _parser_common_syndication_sanitize_cache() . '/' . md5($url);
-  if (file_exists($cache_file)) {
-    $file_content = file_get_contents($cache_file);
-    return unserialize($file_content);
-  }
-  return FALSE;
-}
-
 /**
  * Determine the feed format of a SimpleXML parsed object structure.
  *
-- 
GitLab