Skip to content

Commit b595455

Browse files
committed
Fixed incomplete patch suggestion
1 parent 4055df1 commit b595455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Serilog.Settings.Configuration/Settings/Configuration/ConfigurationReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ bool HasExtensionAttribute(MethodInfo m) =>
520520
.Select(t => t.GetTypeInfo())
521521
.Where(t => t.IsSealed && t.IsAbstract && !t.IsNested))
522522
.SelectMany(t => t.DeclaredMethods)
523-
.Where(m => m.IsStatic && m.IsPublic && hasExtensionAttribute(m))
523+
.Where(m => m.IsStatic && m.IsPublic && HasExtensionAttribute(m))
524524
.Where(m => m.GetParameters()[0].ParameterType == configType)
525525
.ToList();
526526
}

0 commit comments

Comments
 (0)