Skip to content

Commit

Permalink
fix: match to correct signature method parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Jun 5, 2022
1 parent fac44a5 commit 1ee2e4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ internal class SignatureResolver(
}

signature.methodParameters?.let { _ ->
if (signature.methodParameters.all { signatureMethodParameter ->
if (!signature.methodParameters.all { signatureMethodParameter ->
method.parameterTypes.any { methodParameter ->
methodParameter.startsWith(signatureMethodParameter)
}
Expand Down

0 comments on commit 1ee2e4b

Please sign in to comment.