This commit is contained in:
Dan Mills 2008-11-06 17:36:19 -08:00
Родитель 4417f60124
Коммит 301038743b
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -147,12 +147,12 @@ PubKeyManager.prototype = {
_keyType: PubKey,
_logName: "PubKeyManager",
get defaultKeyUrl() this._defaultKeyUrl,
set defaultKeyUrl(value) { this._defaultKeyUrl = value; },
get defaultKeyUri() this._defaultKeyUrl,
set defaultKeyUri(value) { this._defaultKeyUri = value; },
_getDefaultKey: function KeyMgr__getDefaultKey() {
let self = yield;
let ret = yield this.get(self.cb, this.defaultKeyUrl);
let ret = yield this.get(self.cb, this.defaultKeyUri);
self.done(ret);
},
getDefaultKey: function KeyMgr_getDefaultKey(onComplete) {