remove legacy plugin support

This commit is contained in:
David Tsay 2022-06-20 14:20:27 -07:00
parent f404c4022b
commit 8a0b6091ce

View File

@ -74,9 +74,7 @@ define([
'./clock/plugin',
'./DeviceClassifier/plugin',
'./timer/plugin',
'./localStorage/plugin',
'./legacySupport/plugin.js',
'../adapter/indicators/legacy-indicators-plugin'
'./localStorage/plugin'
], function (
_,
UTCTimeSystem,
@ -131,9 +129,7 @@ define([
Clock,
DeviceClassifier,
Timer,
LocalStorage,
LegacySupportPlugin,
LegacyIndicatorsPlugin
LocalStorage
) {
const bundleMap = {
Elasticsearch: 'platform/persistence/elastic'
@ -241,8 +237,6 @@ define([
plugins.Timer = Timer.default;
plugins.DeviceClassifier = DeviceClassifier.default;
plugins.LocalStorage = LocalStorage.default;
plugins.LegacySupport = LegacySupportPlugin.default;
plugins.LegacyIndicators = LegacyIndicatorsPlugin;
return plugins;
});