Refine UI WS service log messages
[e-mobility-charging-stations-simulator.git] / src / charging-station / UIWebSocketServices / AbstractUIService.ts
index fafcdb6d5e12d2e8c330e40ea5f737043de4fc32..a817c859571390b1c8af023b0278462877e7b835 100644 (file)
@@ -12,7 +12,6 @@ export default abstract class AbstractUIService {
   constructor(uiWebSocketServer: UIWebSocketServer) {
     this.chargingStations = new Set<string>();
     this.uiWebSocketServer = uiWebSocketServer;
-    // TODO: Move the shared service code to AbstractUIService
     this.messageHandlers = new Map<ProtocolCommand, ProtocolRequestHandler>([
       [ProtocolCommand.LIST_CHARGING_STATIONS, this.handleListChargingStations.bind(this)],
     ]);