From 680b3dec38a22290596d96fd6342d93302661a13 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 5 Oct 2017 23:36:45 -0700 Subject: [PATCH] [DatFile] Rename helper method --- SabreTools.Library/Dats/Partials/DatFile.Manipulate.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SabreTools.Library/Dats/Partials/DatFile.Manipulate.cs b/SabreTools.Library/Dats/Partials/DatFile.Manipulate.cs index cda6484d..02a10d5c 100644 --- a/SabreTools.Library/Dats/Partials/DatFile.Manipulate.cs +++ b/SabreTools.Library/Dats/Partials/DatFile.Manipulate.cs @@ -446,7 +446,7 @@ namespace SabreTools.Library.Dats _sortedBy = SortedBy.Default; // Now we want to loop through all of the games and set the correct information - AddRomsToParent(); + AddRomsFromChildren(); // Now that we have looped through the cloneof tags, we loop through the romof tags RemoveBiosRomsFromChild(); @@ -806,7 +806,7 @@ namespace SabreTools.Library.Dats /// /// Use cloneof tags to add roms to the parents, removing the child sets in the process /// - private void AddRomsToParent() + private void AddRomsFromChildren() { List games = Keys.ToList(); foreach (string game in games)