Bustage fix from sync-asyncExecute: don't throw as the old code would catch and implicit return undefined.

This commit is contained in:
Edward Lee 2010-04-29 15:18:05 -07:00
parent 3c6fd67fb6
commit 69584666ee

View File

@ -177,9 +177,6 @@ HistoryStore.prototype = {
execCb.throw(error);
},
handleCompletion: function(reason) {
// Throw in-case for some reason we didn't find the GUID
if (this.urlInfo == null)
execCb.throw(reason);
execCb(this.urlInfo);
}
});