Skip to content

Commit ebc2dee

Browse files
committed
Fixes #168
Fixes #180
1 parent 626e555 commit ebc2dee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Injection/Validating.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static class Validating
4747
// Select Method
4848
foreach (var info in type.GetDeclaredMethods())
4949
{
50-
if (!method.Data.MatchMemberInfo(info)) continue;
50+
if (method.Name != info.Name || !method.Data.MatchMemberInfo(info)) continue;
5151

5252
if (null != selection)
5353
{

0 commit comments

Comments
 (0)