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 Apr 9, 2022
1 parent 3b68d5c commit f72dd68
Showing 1 changed file with 1 addition and 1 deletion.
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

1 comment on commit f72dd68

@Sculas
Copy link
Contributor

@Sculas Sculas commented on f72dd68 Apr 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, yeah. My bad, must've accidentally looked over that when merging remote into local 馃槄

Please sign in to comment.