www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit f85d25d1d1c82a82f61c3a082d69d506894eb9f2
parent 40f0de75d8e8ea463f1cc22c9f7825405319b590
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon, 22 Jul 2013 20:37:39 -0400

Remove unused argument in Z.Sync.Storage.Mode.prototype.cacheCredentials

Diffstat:
Mchrome/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 @@ -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) {