Sync constructors between Item dicts

This commit is contained in:
Matt Nadareski
2025-01-14 16:04:30 -05:00
parent 60d946fc6d
commit 090a2d34f5
2 changed files with 26 additions and 6 deletions

View File

@@ -27,12 +27,12 @@ namespace SabreTools.DatFiles
/// <summary>
/// Determine the bucketing key for all items
/// </summary>
private ItemKey _bucketedBy;
private ItemKey _bucketedBy = ItemKey.NULL;
/// <summary>
/// Determine merging type for all items
/// </summary>
private DedupeType _mergedBy;
private DedupeType _mergedBy = DedupeType.None;
/// <summary>
/// Internal dictionary for the class
@@ -82,8 +82,6 @@ namespace SabreTools.DatFiles
/// </summary>
public ItemDictionary()
{
_bucketedBy = ItemKey.NULL;
_mergedBy = DedupeType.None;
_logger = new Logger(this);
}