Skip to content

Commit d328c9f

Browse files
committed
refactor: fix lint
1 parent b6babbe commit d328c9f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/utils/src/lib/profiler/profiler.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,9 @@ export class NodejsProfiler<
304304
}
305305

306306
#setObserving(observing: boolean): void {
307-
if (this.#observing === observing) return;
307+
if (this.#observing === observing) {
308+
return;
309+
}
308310
this.#observing = observing;
309311

310312
if (observing) {

0 commit comments

Comments
 (0)