mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-14 20:54:16 +01:00
Some cleanup.
This commit is contained in:
parent
91cea50f02
commit
2d8b7efc00
6 changed files with 78 additions and 91 deletions
|
|
@ -29,12 +29,12 @@ public class ModMerger : IDisposable
|
|||
public string OptionGroupName = "Merges";
|
||||
public string OptionName = string.Empty;
|
||||
|
||||
private readonly Dictionary<string, string> _fileToFile = new();
|
||||
private readonly HashSet<string> _createdDirectories = new();
|
||||
private readonly HashSet<int> _createdGroups = new();
|
||||
private readonly HashSet<SubMod> _createdOptions = new();
|
||||
private readonly Dictionary<string, string> _fileToFile = [];
|
||||
private readonly HashSet<string> _createdDirectories = [];
|
||||
private readonly HashSet<int> _createdGroups = [];
|
||||
private readonly HashSet<SubMod> _createdOptions = [];
|
||||
|
||||
public readonly HashSet<SubMod> SelectedOptions = new();
|
||||
public readonly HashSet<SubMod> SelectedOptions = [];
|
||||
|
||||
public readonly IReadOnlyList<string> Warnings = new List<string>();
|
||||
public Exception? Error { get; private set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue