X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FUIWebSocketServices%2FAbstractUIService.ts;h=a817c859571390b1c8af023b0278462877e7b835;hb=410a760d4c5c78005eede71c94acb6e9a56593c9;hp=fafcdb6d5e12d2e8c330e40ea5f737043de4fc32;hpb=4198ad5c76ad58e444c1dd2d3f81b5f8fd2846d4;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/UIWebSocketServices/AbstractUIService.ts b/src/charging-station/UIWebSocketServices/AbstractUIService.ts index fafcdb6d..a817c859 100644 --- a/src/charging-station/UIWebSocketServices/AbstractUIService.ts +++ b/src/charging-station/UIWebSocketServices/AbstractUIService.ts @@ -12,7 +12,6 @@ export default abstract class AbstractUIService { constructor(uiWebSocketServer: UIWebSocketServer) { this.chargingStations = new Set(); this.uiWebSocketServer = uiWebSocketServer; - // TODO: Move the shared service code to AbstractUIService this.messageHandlers = new Map([ [ProtocolCommand.LIST_CHARGING_STATIONS, this.handleListChargingStations.bind(this)], ]);