mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Enforce nullability in RombaSharp program
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
using SabreTools.Help;
|
||||
|
||||
namespace RombaSharp.Features
|
||||
@@ -11,7 +10,7 @@ namespace RombaSharp.Features
|
||||
public Fixdat()
|
||||
{
|
||||
Name = Value;
|
||||
Flags = new List<string>() { "fixdat" };
|
||||
Flags = ["fixdat"];
|
||||
Description = "For each specified DAT file it creates a fix DAT.";
|
||||
_featureType = ParameterType.Flag;
|
||||
LongDescription = @"For each specified DAT file it creates a fix DAT with the missing entries for that DAT. If nothing is missing it doesn't create a fix DAT for that particular DAT.";
|
||||
|
||||
Reference in New Issue
Block a user