Skip to content

Commit

Permalink
fix: throwing in case the opcode patterns do not match
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Jun 5, 2022
1 parent 48c4ea2 commit 3144ec8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ internal class SignatureResolver(
return if (signature.opcodes == null) {
PatternScanResult(0, 0)
} else {
method.implementation?.instructions?.scanFor(signature.opcodes)!!
method.implementation?.instructions?.scanFor(signature.opcodes)
}
}

Expand Down

0 comments on commit 3144ec8

Please sign in to comment.