refactor: remove unneeded registration status getter
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStation.ts
index 0cd8dba90612f6d9fd57f5e3a5444aedea1a867a..f0fa08208c79241bf23d0c7cdd05b4c1d7e14991 100644 (file)
@@ -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);
   }