Try to make method names clearer

This commit is contained in:
Matt Nadareski
2025-01-13 13:00:14 -05:00
parent 021c4debb7
commit ecf21a5bc0
2 changed files with 6 additions and 6 deletions

View File

@@ -74,10 +74,10 @@ namespace SabreTools.DatFiles
/// <summary>
/// Use cloneof tags to remove items from the children
/// </summary>
public void RemoveItemsFromChild()
public void RemoveItemsFromCloneOfChild()
{
RemoveItemsFromChildImpl();
RemoveItemsFromChildImplDB();
RemoveItemsFromCloneOfChildImpl();
RemoveItemsFromCloneOfChildImplDB();
}
/// <summary>
@@ -1075,7 +1075,7 @@ namespace SabreTools.DatFiles
/// Applies to <see cref="Items"/>.
/// Assumes items are bucketed by <see cref="ItemKey.Machine"/>.
/// </remarks>
private void RemoveItemsFromChildImpl()
private void RemoveItemsFromCloneOfChildImpl()
{
List<string> buckets = [.. Items.Keys];
buckets.Sort();
@@ -1129,7 +1129,7 @@ namespace SabreTools.DatFiles
/// Applies to <see cref="ItemsDB"/>.
/// Assumes items are bucketed by <see cref="ItemKey.Machine"/>.
/// </remarks>
private void RemoveItemsFromChildImplDB()
private void RemoveItemsFromCloneOfChildImplDB()
{
List<string> buckets = [.. ItemsDB.SortedKeys];
foreach (string bucket in buckets)