From f85d25d1d1c82a82f61c3a082d69d506894eb9f2 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 22 Jul 2013 20:37:39 -0400 Subject: [PATCH] Remove unused argument in Z.Sync.Storage.Mode.prototype.cacheCredentials --- chrome/content/zotero/xpcom/storage/mode.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/storage/mode.js b/chrome/content/zotero/xpcom/storage/mode.js index 303c517e7..472b6a101 100644 --- a/chrome/content/zotero/xpcom/storage/mode.js +++ b/chrome/content/zotero/xpcom/storage/mode.js @@ -74,8 +74,8 @@ Zotero.Sync.Storage.Mode.prototype.checkServerCallback = function (uri, status, return this._checkServerCallback(uri, status, window, skipSuccessMessage); } -Zotero.Sync.Storage.Mode.prototype.cacheCredentials = function (callback) { - return this._cacheCredentials(callback); +Zotero.Sync.Storage.Mode.prototype.cacheCredentials = function () { + return this._cacheCredentials(); } Zotero.Sync.Storage.Mode.prototype.purgeDeletedStorageFiles = function (callback) {