mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Try to make method names clearer
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user