Make CExe helpers static

This commit is contained in:
Matt Nadareski
2025-09-02 07:56:19 -04:00
parent a94b3a82c4
commit f7488bed04

View File

@@ -1413,7 +1413,7 @@ namespace SabreTools.Serialization.Wrappers
/// </summary>
/// <param name="resource">Resource data to inflate</param>
/// <returns>Inflated data on success, null otherwise</returns>
private byte[]? DecompressCExeLZ(byte[] resource)
private static byte[]? DecompressCExeLZ(byte[] resource)
{
try
{
@@ -1434,7 +1434,7 @@ namespace SabreTools.Serialization.Wrappers
/// </summary>
/// <param name="resource">Resource data to inflate</param>
/// <returns>Inflated data on success, null otherwise</returns>
private byte[]? DecompressCExeZlib(byte[] resource)
private static byte[]? DecompressCExeZlib(byte[] resource)
{
try
{