refactor: cleanup imports
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 27 May 2023 18:43:44 +0000 (20:43 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 27 May 2023 18:43:44 +0000 (20:43 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/IdTagsCache.ts
src/charging-station/ocpp/1.6/OCPP16IncomingRequestService.ts
src/charging-station/ocpp/OCPPServiceUtils.ts

index ff5c49d9a6a2dba2fc2810b0e6a36fa54fbbb125..fd35fa8baaecca49d58924ef6d970a2da0672558 100644 (file)
@@ -31,9 +31,9 @@ export class IdTagsCache {
    * Get one idtag from the cache given the distribution
    * Must be called after checking the cache is not an empty array
    *
-   * @param distribution
-   * @param chargingStation
-   * @param connectorId
+   * @param distribution -
+   * @param chargingStation -
+   * @param connectorId -
    * @returns
    */
   public getIdTag(
@@ -59,7 +59,7 @@ export class IdTagsCache {
    * Get all idtags from the cache
    * Must be called after checking the cache is not an empty array
    *
-   * @param file
+   * @param file -
    * @returns
    */
   public getIdTags(file: string): string[] | undefined {
index f39e8cfa000136680e3d03aa1a9776a3e783ba54..f01034a30029b31e40bbcbb8808326d72203a716 100644 (file)
@@ -48,7 +48,6 @@ import {
   type OCPP16ClearCacheRequest,
   type OCPP16DataTransferRequest,
   type OCPP16DataTransferResponse,
-  OCPP16DataTransferStatus,
   OCPP16DataTransferVendorId,
   OCPP16DiagnosticsStatus,
   type OCPP16DiagnosticsStatusNotificationRequest,
index c5387f33f9c693f41ff21f1b20d9f40d7c5cd514..01ca8511fd84a1f14de7ed5a15775f1b06c15851 100644 (file)
@@ -30,7 +30,7 @@ import {
   type StatusNotificationRequest,
   type StatusNotificationResponse,
 } from '../../types';
-import { Constants, ErrorUtils, Utils, logger } from '../../utils';
+import { ErrorUtils, Utils, logger } from '../../utils';
 
 export class OCPPServiceUtils {
   protected constructor() {