From 1fb214826a367053852c7d56e91775cdb92c9588 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 30 Dec 2023 15:04:15 +0100 Subject: [PATCH] refactor: code cleanup MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/performance/PerformanceStatistics.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/performance/PerformanceStatistics.ts b/src/performance/PerformanceStatistics.ts index 2d557eaa..f61d0958 100644 --- a/src/performance/PerformanceStatistics.ts +++ b/src/performance/PerformanceStatistics.ts @@ -82,7 +82,7 @@ export class PerformanceStatistics { performance.measure(name, markId) } catch (error) { if (error instanceof Error && error.message.includes('performance mark has not been set')) { - /** Ignore */ + /* Ignore */ } else { throw error } -- 2.34.1