From: Jérôme Benoit Date: Tue, 20 Sep 2022 18:24:47 +0000 (+0200) Subject: Add missing break X-Git-Tag: v1.1.74~26 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=de4cb8b6a7ba9028808d28ba931be2dbbc8579f3;p=e-mobility-charging-stations-simulator.git Add missing break Signed-off-by: Jérôme Benoit --- diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index ed876d10..d3c33fc3 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -1582,6 +1582,7 @@ export default class ChargingStation { // Remove the request from the cache in case of error at response handling this.requests.delete(messageId); } + break; } } }