removed redundant code

This commit is contained in:
Henry 2016-05-27 15:25:06 -07:00
parent d8d0f22889
commit 0218f42e2b

View File

@ -52,18 +52,6 @@ define(
HistoricalTableController.prototype = Object.create(TableController.prototype);
function fastPromise(value) {
if (value && value.then) {
return value;
} else {
return {
then: function (callback) {
return fastPromise(callback(value));
}
};
}
}
/**
* Cancels outstanding processing
* @private