Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/repository_cache.rb')
-rw-r--r--lib/repository_cache.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/repository_cache.rb b/lib/repository_cache.rb
index 8ddc3511293..fa016a170cd 100644
--- a/lib/repository_cache.rb
+++ b/lib/repository_cache.rb
@@ -18,12 +18,4 @@ class RepositoryCache
def fetch(key, &block)
backend.fetch(cache_key(key), &block)
end
-
- def exist?(key)
- backend.exist?(cache_key(key))
- end
-
- def read(key)
- backend.read(cache_key(key))
- end
end