Minor js2-mode warning fixes.

This commit is contained in:
Atul Varma 2008-06-03 15:14:27 -07:00
parent e5bb509e17
commit d8420aaf50

View File

@ -169,7 +169,7 @@ Engine.prototype = {
},
get _engineId() {
let id = ID.get('Engine:' + this.name)
let id = ID.get('Engine:' + this.name);
if (!id ||
id.username != this._pbeId.username || id.realm != this._pbeId.realm) {
let password = null;
@ -603,7 +603,7 @@ Engine.prototype = {
this._core.detectUpdates(self.cb, this._snapshot.data, snap.data);
ret.updates = yield;
self.done(ret)
self.done(ret);
},
_fullUpload: function Engine__fullUpload() {