Bucketing should stay in the item dicts

This commit is contained in:
Matt Nadareski
2025-01-14 09:53:49 -05:00
parent fba7e4da14
commit 89ab926782
2 changed files with 2 additions and 4 deletions

View File

@@ -578,7 +578,6 @@ namespace SabreTools.DatFiles
#endregion
// TODO: All internal, can this be put into a better location?
#region Bucketing
/// <summary>
@@ -589,7 +588,7 @@ namespace SabreTools.DatFiles
/// <param name="lower">True if the key should be lowercased (default), false otherwise</param>
/// <param name="norename">True if games should only be compared on game and file name, false if system and source are counted</param>
/// <returns></returns>
internal void BucketBy(ItemKey bucketBy, DedupeType dedupeType, bool lower = true, bool norename = true)
public void BucketBy(ItemKey bucketBy, DedupeType dedupeType, bool lower = true, bool norename = true)
{
// If the sorted type isn't the same, we want to sort the dictionary accordingly
if (_bucketedBy != bucketBy && bucketBy != ItemKey.NULL)