We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f3519d commit b4a5286Copy full SHA for b4a5286
kotlinx-coroutines-core/jvm/src/debug/internal/DebugProbesImpl.kt
@@ -492,7 +492,7 @@ internal object DebugProbesImpl {
492
// first index past the end of the span of internal methods that starts from `i`
493
var j = i + 1
494
while (j < size && stackTrace[j].isInternalMethod) {
495
- j += 1
+ ++j
496
}
497
// index of the last non-synthetic internal methods in this span, or `i` if there are no such methods
498
var k = j - 1
@@ -508,7 +508,7 @@ internal object DebugProbesImpl {
508
i = j
509
} else {
510
result += stackTrace[i]
511
- i += 1
+ ++i
512
513
514
return result
0 commit comments