From 944a586380dca36dee92759c5e660da60f53a120 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 11 Jan 2017 10:13:13 +0000 Subject: [PATCH] Remove unused storage.getFileContent --- src/app/storage.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/app/storage.js b/src/app/storage.js index e457087d2a..f8c054802f 100644 --- a/src/app/storage.js +++ b/src/app/storage.js @@ -1,7 +1,5 @@ 'use strict' -var utils = require('./utils') - function Storage () { this.rename = function (originalName, newName) { var content = this.get(originalName) @@ -13,10 +11,6 @@ function Storage () { window.localStorage.removeItem(name) } - this.getFileContent = function (key) { - return this.get(utils.fileKey(key)) - } - this.exists = function (key) { return !!this.get(key) }