Fix method ordering

This commit is contained in:
Matt Nadareski
2025-07-29 11:49:07 -04:00
parent 0aa25df88f
commit a2bf15f0bc

View File

@@ -112,6 +112,17 @@ namespace SabreTools.Serialization.Wrappers
#region Extraction
/// <summary>
/// Extract a cabinet set to an output directory, if possible
/// </summary>
/// <param name="filename">Filename for one cabinet in the set</param>
/// <param name="outDir">Path to the output directory</param>
/// <param name="includeDebug">True to include debug data, false otherwise</param>
/// <returns>Indicates if all files were able to be extracted</returns>
/// <remarks>Will extract all items found in the set</remarks>
public static bool ExtractSet(string filename, string outDir, bool includeDebug)
=> ExtractSet(stream: null, filename, outDir, includeDebug);
/// <summary>
/// Extract a cabinet set to an output directory, if possible
/// </summary>
@@ -153,17 +164,6 @@ namespace SabreTools.Serialization.Wrappers
return true;
}
/// <summary>
/// Extract a cabinet set to an output directory, if possible
/// </summary>
/// <param name="filename">Filename for one cabinet in the set</param>
/// <param name="outDir">Path to the output directory</param>
/// <param name="includeDebug">True to include debug data, false otherwise</param>
/// <returns>Indicates if all files were able to be extracted</returns>
/// <remarks>Will extract all items found in the set</remarks>
public static bool ExtractSet(string filename, string outDir, bool includeDebug)
=> ExtractSet(stream: null, filename, outDir, includeDebug);
/// <summary>
/// Extract a cabinet to an output directory, if possible
/// </summary>