We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6344359 + ce774c0 commit b387c1cCopy full SHA for b387c1c
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