Use newer "is null" syntax

This commit is contained in:
Matt Nadareski
2026-01-25 14:30:18 -05:00
parent 2959d82231
commit ee85a84d8f
241 changed files with 871 additions and 871 deletions

View File

@@ -20,7 +20,7 @@ namespace ExtractionTool
var commandSet = CreateCommands(mainFeature);
// If we have no args, show the help and quit
if (args == null || args.Length == 0)
if (args is null || args.Length == 0)
{
commandSet.OutputAllHelp();
return;