C#: Fix quality issues

This commit is contained in:
Tamas Vajk
2024-06-28 11:09:40 +02:00
parent 1cf5e89b96
commit 199a9688af
47 changed files with 79 additions and 85 deletions

View File

@@ -97,7 +97,7 @@ namespace Semmle.Util
this.environment = environment;
}
public override string ToString() => arguments.Length > 0 ? exe + " " + arguments : exe;
public override string ToString() => arguments.Length > 0 ? $"{exe} {arguments}" : exe;
public override int Run(IBuildActions actions, Action<string, bool> startCallback, Action<int, string, bool> exitCallBack)
{