We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6344359 commit ce774c0Copy full SHA for ce774c0
BenchmarkTests/Runner/Scenarios/Trace/UI/TraceContentView.swift
@@ -148,7 +148,9 @@ struct TraceContentView: View {
148
/// - currentLevel: The current depth level in the span tree.
149
/// - maxDepth: The maximum depth (levels) for the span tree generation.
150
private func sendSpanTree(parent: OTSpan, currentLevel: Int, maxDepth: Int) {
151
- guard currentLevel < maxDepth, childrenCount > 0 else { return }
+ guard currentLevel < maxDepth, childrenCount > 0 else {
152
+ return
153
+ }
154
155
for i in 1 ... childrenCount {
156
let childOperation = "\(operationName) - Child \(i) at level \(currentLevel + 1)"
0 commit comments