File tree 1 file changed +1
-8
lines changed
1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 2
2
/* eslint-disable max-classes-per-file */
3
3
import { doesEntryMatchDefinition } from './doesEntryMatchDefinition'
4
4
import { ensureTimestamp } from './ensureTimestamp'
5
- import { processPerformanceEntry } from './processPerformanceEntry'
6
5
import type {
7
6
ActiveTraceConfig ,
8
7
CompleteTraceDefinition ,
@@ -317,13 +316,7 @@ export class ActiveTrace<ScopeT extends ScopeBase> {
317
316
this . stateMachine . emit ( 'onInterrupt' , reason )
318
317
}
319
318
320
- processEntry ( entry : TraceEntry < ScopeT > | PerformanceEntry ) : TraceEntryAnnotationRecord | undefined {
321
- return entry instanceof PerformanceEntry
322
- ? this . processTraceEntry ( processPerformanceEntry ( entry ) )
323
- : this . processTraceEntry ( entry )
324
- }
325
-
326
- private processTraceEntry (
319
+ processEntry (
327
320
entry : TraceEntry < ScopeT > ,
328
321
) : TraceEntryAnnotationRecord | undefined {
329
322
// check if valid for this trace:
You can’t perform that action at this time.
0 commit comments