C#: Enable nullability in csharp extraction project v1

This commit is contained in:
Tamas Vajk
2021-02-17 15:44:30 +01:00
parent 3400c121d6
commit 10ab17a7e0
73 changed files with 333 additions and 278 deletions

View File

@@ -45,7 +45,7 @@ namespace Semmle.Util.Logging
/// <summary>
/// Log the given text with the given severity.
/// </summary>
public static void Log(this ILogger logger, Severity s, string text, params object[] args)
public static void Log(this ILogger logger, Severity s, string text, params object?[] args)
{
logger.Log(s, string.Format(text, args));
}