From: Jérôme Benoit Date: Thu, 30 Sep 2021 19:16:09 +0000 (+0200) Subject: Cleanup X-Git-Tag: v1.1.19~1 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=331e20bbca5a7f404551666c4a3609ae92fc5e86;p=e-mobility-charging-stations-simulator.git Cleanup Signed-off-by: Jérôme Benoit --- diff --git a/src/charging-station/ocpp/1.6/OCPP16ResponseService.ts b/src/charging-station/ocpp/1.6/OCPP16ResponseService.ts index 96d3e799..77c7b77a 100644 --- a/src/charging-station/ocpp/1.6/OCPP16ResponseService.ts +++ b/src/charging-station/ocpp/1.6/OCPP16ResponseService.ts @@ -26,7 +26,7 @@ export default class OCPP16ResponseService extends OCPPResponseService { [OCPP16RequestCommand.START_TRANSACTION, this.handleResponseStartTransaction.bind(this)], [OCPP16RequestCommand.STOP_TRANSACTION, this.handleResponseStopTransaction.bind(this)], [OCPP16RequestCommand.STATUS_NOTIFICATION, this.handleResponseStatusNotification.bind(this)], - [OCPP16RequestCommand.METER_VALUES, this.handleResponseMeterValues.bind(this)], + [OCPP16RequestCommand.METER_VALUES, this.handleResponseMeterValues.bind(this)] ]); }