Skip to content

Commit

Permalink
chore: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas authored and oSumAtrIX committed Jun 5, 2022
1 parent cca12aa commit 6c3e2d7
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6c3e2d7

Please sign in to comment.