Skip to content

Commit ce774c0

Browse files
committed
fix lint
1 parent 6344359 commit ce774c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

BenchmarkTests/Runner/Scenarios/Trace/UI/TraceContentView.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ struct TraceContentView: View {
148148
/// - currentLevel: The current depth level in the span tree.
149149
/// - maxDepth: The maximum depth (levels) for the span tree generation.
150150
private func sendSpanTree(parent: OTSpan, currentLevel: Int, maxDepth: Int) {
151-
guard currentLevel < maxDepth, childrenCount > 0 else { return }
151+
guard currentLevel < maxDepth, childrenCount > 0 else {
152+
return
153+
}
152154

153155
for i in 1 ... childrenCount {
154156
let childOperation = "\(operationName) - Child \(i) at level \(currentLevel + 1)"

0 commit comments

Comments
 (0)