Skip to content

Commit 8afac25

Browse files
committed
C#: Add params modifier on override
1 parent 63e1731 commit 8afac25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/extractor/Semmle.Util/LoggerUtils.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ public override void WriteLine(string? value)
2929
}
3030
}
3131

32-
public override void WriteLine(string? value, object?[] args)
32+
public override void WriteLine(string? format, params object?[] args)
3333
{
34-
WriteLine(value is null ? value : String.Format(value, args));
34+
WriteLine(format is null ? format : String.Format(format, args));
3535
}
3636

3737
private readonly object mutex = new object();

0 commit comments

Comments
 (0)