Fix default configuration handling on some sections
[e-mobility-charging-stations-simulator.git] / src / utils / CircularArray.ts
index 227165fb5ac50d775a72944ca6528973120a48ab..feb5e3e2b66fb99aef38c6d24db1a6c5eafccfe1 100644 (file)
@@ -1,5 +1,8 @@
-export const DEFAULT_CIRCULAR_ARRAY_SIZE = 2000;
+// Copyright Jerome Benoit. 2021. All Rights Reserved.
 
+export const DEFAULT_CIRCULAR_ARRAY_SIZE = Number.MAX_SAFE_INTEGER;
+
+/** Array with a maximum length shifting items when full. */
 export class CircularArray<T> extends Array<T> {
   public size: number;