Remove unused storage path

Fixes #1131
This commit is contained in:
Joseph Schorr 2016-01-11 13:43:13 -05:00
parent fb43c1fb10
commit 622d2ebbb1

View file

@ -31,10 +31,6 @@ class StoragePaths(object):
def blob_path(self, digest_str):
return content_path(digest_str)
def image_file_trie_path(self, storage_uuid):
base_path = self._image_path(storage_uuid)
return '{0}files.trie'.format(base_path)
class BaseStorage(StoragePaths):
def __init__(self):