From 57ec10dfd4a96aeefe41b88b3a62c7766096fb38 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 18 Sep 2014 17:35:25 -0400 Subject: [PATCH] Remove unnecessary var --- chrome/content/zotero/xpcom/storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js index fc4ea383c..fe483812e 100644 --- a/chrome/content/zotero/xpcom/storage.js +++ b/chrome/content/zotero/xpcom/storage.js @@ -1543,7 +1543,7 @@ Zotero.Sync.Storage = new function () { var returnFile = null; // processDownload() needs to know that we're renaming the file if (renamed) { - var returnFile = destFile.clone(); + returnFile = destFile.clone(); } return returnFile; }