[SabreTools, DatFile] Remove bare param being passed thru

This commit is contained in:
Matt Nadareski
2018-03-09 22:20:26 -08:00
parent b28b1c4e3e
commit 13abfec89a
2 changed files with 3 additions and 4 deletions

View File

@@ -1622,7 +1622,6 @@ namespace SabreTools.Library.DatFiles
/// <param name="updateMode">Non-zero flag for diffing mode, zero otherwise</param> /// <param name="updateMode">Non-zero flag for diffing mode, zero otherwise</param>
/// <param name="inplace">True if the output files should overwrite their inputs, false otherwise</param> /// <param name="inplace">True if the output files should overwrite their inputs, false otherwise</param>
/// <param name="skip">True if the first cascaded diff file should be skipped on output, false otherwise</param> /// <param name="skip">True if the first cascaded diff file should be skipped on output, false otherwise</param>
/// <param name="bare">True if the date should not be appended to the default name, false otherwise [OBSOLETE]</param>
/// <param name="clean">True to clean the game names to WoD standard, false otherwise (default)</param> /// <param name="clean">True to clean the game names to WoD standard, false otherwise (default)</param>
/// <param name="remUnicode">True if we should remove non-ASCII characters from output, false otherwise (default)</param> /// <param name="remUnicode">True if we should remove non-ASCII characters from output, false otherwise (default)</param>
/// <param name="descAsName">True to use game descriptions as the names, false otherwise (default)</param> /// <param name="descAsName">True to use game descriptions as the names, false otherwise (default)</param>
@@ -1631,7 +1630,7 @@ namespace SabreTools.Library.DatFiles
/// <param name="replaceMode">ReplaceMode representing what should be updated [only for base replacement]</param> /// <param name="replaceMode">ReplaceMode representing what should be updated [only for base replacement]</param>
/// <param name="onlySame">True if descriptions should only be replaced if the game name is the same, false otherwise [only for base replacement]</param> /// <param name="onlySame">True if descriptions should only be replaced if the game name is the same, false otherwise [only for base replacement]</param>
public void DetermineUpdateType(List<string> inputPaths, List<string> basePaths, string outDir, UpdateMode updateMode, bool inplace, bool skip, public void DetermineUpdateType(List<string> inputPaths, List<string> basePaths, string outDir, UpdateMode updateMode, bool inplace, bool skip,
bool bare, bool clean, bool remUnicode, bool descAsName, Filter filter, SplitType splitType, ReplaceMode replaceMode, bool onlySame) bool clean, bool remUnicode, bool descAsName, Filter filter, SplitType splitType, ReplaceMode replaceMode, bool onlySame)
{ {
// Ensure we only have files in the inputs // Ensure we only have files in the inputs
List<string> inputFileNames = Utilities.GetOnlyFilesFromInputs(inputPaths, appendparent: true); List<string> inputFileNames = Utilities.GetOnlyFilesFromInputs(inputPaths, appendparent: true);

View File

@@ -261,7 +261,7 @@ namespace SabreTools
/// <param name="updateMode">Non-zero flag for diffing mode, zero otherwise</param> /// <param name="updateMode">Non-zero flag for diffing mode, zero otherwise</param>
/// <param name="inplace">True if the cascade-diffed files should overwrite their inputs, false otherwise</param> /// <param name="inplace">True if the cascade-diffed files should overwrite their inputs, false otherwise</param>
/// <param name="skip">True if the first cascaded diff file should be skipped on output, false otherwise</param> /// <param name="skip">True if the first cascaded diff file should be skipped on output, false otherwise</param>
/// <param name="bare">True if the date should not be appended to the default name, false otherwise [OBSOLETE]</param> /// <param name="bare">True if the date should not be appended to the default name, false otherwise</param>
/// /* Filtering info */ /// /* Filtering info */
/// <param name="filter">Pre-populated filter object for DAT filtering</param> /// <param name="filter">Pre-populated filter object for DAT filtering</param>
/// <param name="splitType">Type of the split that should be performed (split, merged, fully merged)</param> /// <param name="splitType">Type of the split that should be performed (split, merged, fully merged)</param>
@@ -348,7 +348,7 @@ namespace SabreTools
// Populate the DatData object // Populate the DatData object
DatFile userInputDat = new DatFile(datHeader); DatFile userInputDat = new DatFile(datHeader);
userInputDat.DetermineUpdateType(inputPaths, basePaths, outDir, updateMode, inplace, skip, bare, clean, userInputDat.DetermineUpdateType(inputPaths, basePaths, outDir, updateMode, inplace, skip, clean,
remUnicode, descAsName, filter, splitType, replaceMode, onlySame); remUnicode, descAsName, filter, splitType, replaceMode, onlySame);
} }