Fixes to connectors initializing handling.
[e-mobility-charging-stations-simulator.git] / src / charging-station / Worker.js
index 7e899d40328eea4082568382717745296b879050..db82e8215fd0dad8fca89da13431c36f3c5c195d 100644 (file)
@@ -24,7 +24,6 @@ class Wrk {
    * @param {Number} numConcurrentWorkers
    * @private
    */
-  // eslint-disable-next-line class-methods-use-this
   set _numConcurrentWorkers(numConcurrentWorkers) {
     if (numConcurrentWorkers > 10) {
       EventEmitter.defaultMaxListeners = numConcurrentWorkers + 1;
@@ -32,7 +31,6 @@ class Wrk {
     this._concurrentWorkers = numConcurrentWorkers;
   }
 
-  // eslint-disable-next-line class-methods-use-this
   get _numConcurrentWorkers() {
     return this._concurrentWorkers;
   }