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,7 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
||||
using SabreTools.Help;
|
||||
using SabreTools.IO;
|
||||
|
||||
@@ -14,7 +13,7 @@ namespace RombaSharp.Features
|
||||
public Merge()
|
||||
{
|
||||
Name = Value;
|
||||
Flags = new List<string>() { "merge" };
|
||||
Flags = ["merge"];
|
||||
Description = "Merges depot";
|
||||
_featureType = ParameterType.Flag;
|
||||
LongDescription = "Merges specified depot into current depot.";
|
||||
|
||||
Reference in New Issue
Block a user