X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FChargingStation.ts;h=f0fa08208c79241bf23d0c7cdd05b4c1d7e14991;hb=05e2446f43d2fb81bfdfe43684186acdeb490085;hp=0cd8dba90612f6d9fd57f5e3a5444aedea1a867a;hpb=1cee0015ac704be480535c7228103525cc3c8cc2;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index 0cd8dba9..f0fa0820 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -264,10 +264,6 @@ export class ChargingStation extends EventEmitter { return this?.wsConnection?.readyState === WebSocket.OPEN; } - public getRegistrationStatus(): RegistrationStatusEnumType | undefined { - return this?.bootNotificationResponse?.status; - } - public inUnknownState(): boolean { return isNullOrUndefined(this?.bootNotificationResponse?.status); }