From: Jérôme Benoit Date: Wed, 15 Sep 2021 21:13:37 +0000 (+0200) Subject: Silence a sonar warning X-Git-Tag: v1.1.1~2 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;ds=sidebyside;h=68a8d1bbf67c9b3eac7e61c0e2526710a106f0c8;hp=2a2d9bba858b5368b3fefa1fc4ae9e5d6ce44a20;p=e-mobility-charging-stations-simulator.git Silence a sonar warning Signed-off-by: Jérôme Benoit --- diff --git a/src/performance/storage/JSONFileStorage.ts b/src/performance/storage/JSONFileStorage.ts index 30c83d3d..92b4faae 100644 --- a/src/performance/storage/JSONFileStorage.ts +++ b/src/performance/storage/JSONFileStorage.ts @@ -29,7 +29,7 @@ export class JSONFileStorage extends Storage { } await release(); }) - .catch(() => { }); + .catch(() => { /* This is intentional */ }); } public open(): void {