[DatFile] Use wrapped functions; add Remove overloads

This commit is contained in:
Matt Nadareski
2017-09-25 12:21:52 -07:00
parent 9b4dc660a5
commit 231cc6141f
4 changed files with 126 additions and 125 deletions

View File

@@ -327,7 +327,8 @@ namespace SabreTools.Library.Dats
// If we're in removal mode, replace the list with the new one
if (remove)
{
datdata[key] = left;
datdata.Remove(key);
datdata.AddRange(key, left);
}
return output;