diff --git a/platform/features/table/src/controllers/HistoricalTableController.js b/platform/features/table/src/controllers/HistoricalTableController.js index da9b1d41a0..35f223cbe0 100644 --- a/platform/features/table/src/controllers/HistoricalTableController.js +++ b/platform/features/table/src/controllers/HistoricalTableController.js @@ -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