mirror of
https://github.com/github/codeql.git
synced 2026-05-05 13:45:19 +02:00
C#: Add params modifier on override
This commit is contained in:
@@ -29,9 +29,9 @@ namespace Semmle.Util
|
||||
}
|
||||
}
|
||||
|
||||
public override void WriteLine(string? value, object?[] args)
|
||||
public override void WriteLine(string? format, params object?[] args)
|
||||
{
|
||||
WriteLine(value is null ? value : String.Format(value, args));
|
||||
WriteLine(format is null ? format : String.Format(format, args));
|
||||
}
|
||||
|
||||
private readonly object mutex = new object();
|
||||
|
||||
Reference in New Issue
Block a user