Rename ConvertMetadata methods to be easier to distinguish

This commit is contained in:
Matt Nadareski
2025-01-10 11:05:51 -05:00
parent 3595008ae4
commit 100c321e5d
8 changed files with 14 additions and 14 deletions

View File

@@ -16,7 +16,7 @@ namespace SabreTools.DatFiles
/// <param name="indexId">Index ID for the DAT</param>
/// <param name="keep">True if full pathnames are to be kept, false otherwise</param>
/// <param name="statsOnly">True to only add item statistics while parsing, false otherwise</param>
public void ConvertMetadata(Models.Metadata.MetadataFile? item, string filename, int indexId, bool keep, bool statsOnly)
public void ConvertFromMetadata(Models.Metadata.MetadataFile? item, string filename, int indexId, bool keep, bool statsOnly)
{
// If the metadata file is invalid, we can't do anything
if (item == null || item.Count == 0)