Fix or ignore build warnings

This commit is contained in:
Peter Butzhammer
2024-04-25 10:19:17 +02:00
parent 1672ca906d
commit 87d69fb614
6 changed files with 23 additions and 14 deletions

View File

@@ -48,8 +48,7 @@ internal class VariableNameParser : IVariableNameParser
public VariableAddress Parse(string input)
{
if (input == null)
throw new ArgumentNullException(nameof(input));
ArgumentNullException.ThrowIfNull(input);
var match = regex.Match(input);
if (!match.Success)