From b0ab8cd77f8ae373b07cb330e1f7881c17192253 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Wed, 17 Nov 2021 11:40:38 +0530 Subject: [PATCH] Space before { --- src/logging/LogItem.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/logging/LogItem.ts b/src/logging/LogItem.ts index c12308ef..717eadfd 100644 --- a/src/logging/LogItem.ts +++ b/src/logging/LogItem.ts @@ -120,7 +120,7 @@ export class LogItem implements ILogItem { return item.run(callback); } - get duration(): number | undefined{ + get duration(): number | undefined { if (this.end) { return this.end - this.start; } else { @@ -128,7 +128,7 @@ export class LogItem implements ILogItem { } } - durationWithoutType(type: string): number | undefined{ + durationWithoutType(type: string): number | undefined { const durationOfType = this.durationOfType(type); if (this.duration && durationOfType) { return this.duration - durationOfType;