X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FAuthorizedTagsCache.ts;h=d39fbee61e6fa6e27a13fbddbab25dbdffee2d06;hb=60c59a02878ddd2ddbac38ec3b3d38f706e538e9;hp=4a9da4ce67f3bfa6e0ca699395f971d1a42712fc;hpb=9d7484a4667898757b7c23be3dec7458c337cb84;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/AuthorizedTagsCache.ts b/src/charging-station/AuthorizedTagsCache.ts index 4a9da4ce..d39fbee6 100644 --- a/src/charging-station/AuthorizedTagsCache.ts +++ b/src/charging-station/AuthorizedTagsCache.ts @@ -1,8 +1,9 @@ +import fs from 'fs'; + import { FileType } from '../types/FileType'; import FileUtils from '../utils/FileUtils'; -import Utils from '../utils/Utils'; -import fs from 'fs'; import logger from '../utils/Logger'; +import Utils from '../utils/Utils'; export default class AuthorizedTagsCache { private static instance: AuthorizedTagsCache | null = null; @@ -15,7 +16,7 @@ export default class AuthorizedTagsCache { } public static getInstance(): AuthorizedTagsCache { - if (!AuthorizedTagsCache.instance) { + if (AuthorizedTagsCache.instance === null) { AuthorizedTagsCache.instance = new AuthorizedTagsCache(); } return AuthorizedTagsCache.instance;