mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-11 13:56:16 +00:00
chore: format code
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user