mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 09:08:04 +01:00
chore: format code
This commit is contained in:
parent
cca12aa34a
commit
6c3e2d79ea
1 changed files with 5 additions and 2 deletions
|
@ -77,8 +77,11 @@ internal class SignatureResolver(
|
|||
}
|
||||
}
|
||||
|
||||
return if (signature.opcodes == null) PatternScanResult(0,0)
|
||||
else method.implementation?.instructions?.scanFor(signature.opcodes)
|
||||
return if (signature.opcodes == null) {
|
||||
PatternScanResult(0, 0)
|
||||
} else {
|
||||
method.implementation?.instructions?.scanFor(signature.opcodes)!!
|
||||
}
|
||||
}
|
||||
|
||||
private fun compareParameterTypes(signature: Array<String>, original: MutableList<out CharSequence>): Boolean {
|
||||
|
|
Loading…
Reference in a new issue