Skip to content

Commit 71efd15

Browse files
committed
Removed unused isWarmStart function
1 parent 066e166 commit 71efd15

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

apps/webapp/app/presenters/v3/SpanPresenter.server.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -509,12 +509,3 @@ export class SpanPresenter extends BasePresenter {
509509
}
510510
}
511511
}
512-
513-
function isWarmStart(
514-
attributes: string | number | boolean | Record<string, unknown> | null | undefined
515-
): boolean | undefined {
516-
if (!attributes || typeof attributes !== "object") return undefined;
517-
const attribute = attributes[SemanticInternalAttributes.WARM_START];
518-
if (typeof attribute !== "boolean") return undefined;
519-
return attribute;
520-
}

0 commit comments

Comments
 (0)