From 68a8d1bbf67c9b3eac7e61c0e2526710a106f0c8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 15 Sep 2021 23:13:37 +0200 Subject: [PATCH] Silence a sonar warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/performance/storage/JSONFileStorage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.34.1