[Refactor] Fix indentation issues.

This commit is contained in:
2025-11-24 19:38:40 +00:00
parent 5774885431
commit 8331fba1e4
43 changed files with 1700 additions and 1751 deletions

View File

@@ -52,10 +52,10 @@ public partial class LZFSE
public static int DecodeBuffer(byte[] source, byte[] destination) => Native.IsSupported
? (int)
AARU_lzfse_decode_buffer(destination,
(nuint)destination.Length,
source,
(nuint)source.Length,
null)
(nuint)destination.Length,
source,
(nuint)source.Length,
null)
: 0;
/// <summary>Compresses a buffer using BZIP2</summary>
@@ -65,9 +65,9 @@ public partial class LZFSE
public static int EncodeBuffer(byte[] source, byte[] destination) => Native.IsSupported
? (int)
AARU_lzfse_encode_buffer(destination,
(nuint)destination.Length,
source,
(nuint)source.Length,
null)
(nuint)destination.Length,
source,
(nuint)source.Length,
null)
: 0;
}