Simplify Connectors type definition
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / OCPPRequestService.ts
index c35f78de254e8080743aa81f11253877cfd6ca1c..d17c21d3805945bc94bc93534d4c2eca2a698f33 100644 (file)
@@ -81,7 +81,7 @@ export default abstract class OCPPRequestService {
         logger.debug(`${self.chargingStation.logPrefix()} Error: %j occurred when calling command %s with parameters: %j`, error, commandName, commandParams);
         // Build Exception
         // eslint-disable-next-line no-empty-function
-        self.chargingStation.requests.set(messageId, [() => { }, () => { }, {}]);
+        self.chargingStation.requests.set(messageId, [() => { /* This is intentiomal */ }, () => { /* This is intentiomal */ }, {}]);
         // Send error
         reject(error);
       }