From f7488bed0477ed36112d13e1919fce6285c490ff Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 2 Sep 2025 07:56:19 -0400 Subject: [PATCH] Make CExe helpers static --- SabreTools.Serialization/Wrappers/PortableExecutable.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SabreTools.Serialization/Wrappers/PortableExecutable.cs b/SabreTools.Serialization/Wrappers/PortableExecutable.cs index 822cb080..81a7e868 100644 --- a/SabreTools.Serialization/Wrappers/PortableExecutable.cs +++ b/SabreTools.Serialization/Wrappers/PortableExecutable.cs @@ -1413,7 +1413,7 @@ namespace SabreTools.Serialization.Wrappers /// /// Resource data to inflate /// Inflated data on success, null otherwise - private byte[]? DecompressCExeLZ(byte[] resource) + private static byte[]? DecompressCExeLZ(byte[] resource) { try { @@ -1434,7 +1434,7 @@ namespace SabreTools.Serialization.Wrappers /// /// Resource data to inflate /// Inflated data on success, null otherwise - private byte[]? DecompressCExeZlib(byte[] resource) + private static byte[]? DecompressCExeZlib(byte[] resource) { try {