mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2024-11-10 01:01:56 +01:00
fix: print instruction index of warning
This commit is contained in:
parent
e5a609f716
commit
9e29aeeeff
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ internal class SignatureChecker {
|
|||
for (i in (warning.actualIndex - 5).coerceAtLeast(0) until warning.actualIndex) {
|
||||
println("$i: ${instructions[i].opcode}")
|
||||
}
|
||||
println(warning.toString())
|
||||
println("${warning.actualIndex}: $warning")
|
||||
for (i in warning.actualIndex + 1 until (warning.actualIndex + 5).coerceAtMost(instructions.size)) {
|
||||
println("$i: ${instructions[i].opcode}")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue