Use camel case everywhere
[e-mobility-charging-stations-simulator.git] / src / performance / storage / JSONFileStorage.ts
index 7e23365ef77212cab7cf9f8ef690d214edad9ef7..9df7662a02db6a0552a8cd03dbe6ee9e8fd601a3 100644 (file)
@@ -10,9 +10,9 @@ import lockfile from 'proper-lockfile';
 export class JSONFileStorage extends Storage {
   private fd: number | null = null;
 
-  constructor(storageURI: string, logPrefix: string) {
-    super(storageURI, logPrefix);
-    this.dbName = this.storageURI.pathname;
+  constructor(storageUri: string, logPrefix: string) {
+    super(storageUri, logPrefix);
+    this.dbName = this.storageUri.pathname;
   }
 
   public storePerformanceStatistics(performanceStatistics: Statistics): void {