[DatFile] Simplify merging code

This commit is contained in:
Matt Nadareski
2017-10-09 13:55:28 -07:00
parent f89026a6d0
commit 4eb36aa39f
2 changed files with 19 additions and 227 deletions

View File

@@ -1283,7 +1283,7 @@ namespace SabreTools.Library.DatFiles
}
/// <summary>
/// Remove a key from the file dictionary
/// Remove a key from the file dictionary if it exists
/// </summary>
/// <param name="key">Key in the dictionary to remove</param>
public void Remove(string key)
@@ -1314,7 +1314,7 @@ namespace SabreTools.Library.DatFiles
}
/// <summary>
/// Remove a value from the file dictionary
/// Remove a value from the file dictionary if it exists
/// </summary>
/// <param name="key">Key in the dictionary to remove from</param>
/// <param name="value">Value to remove from the dictionary</param>
@@ -1346,7 +1346,7 @@ namespace SabreTools.Library.DatFiles
}
/// <summary>
/// Remove a range of values from the file dictionary
/// Remove a range of values from the file dictionary if they exists
/// </summary>
/// <param name="key">Key in the dictionary to remove from</param>
/// <param name="value">Value to remove from the dictionary</param>