Rename method to match item dictionary

This commit is contained in:
Matt Nadareski
2024-03-13 11:02:17 -04:00
parent cef68b60bb
commit 4bf536b072

View File

@@ -268,7 +268,7 @@ namespace SabreTools.DatFiles
#endif #endif
// Sort the buckets that have been created for consistency // Sort the buckets that have been created for consistency
SortBuckets(norename); PerformSorting(norename);
} }
/// <summary> /// <summary>
@@ -372,7 +372,7 @@ namespace SabreTools.DatFiles
/// <summary> /// <summary>
/// Sort existing buckets for consistency /// Sort existing buckets for consistency
/// </summary> /// </summary>
private void SortBuckets(bool norename) private void PerformSorting(bool norename)
{ {
// Get the current list of bucket keys // Get the current list of bucket keys
string[] bucketKeys = [.. _buckets.Keys]; string[] bucketKeys = [.. _buckets.Keys];