Clean up Blast slightly

This commit is contained in:
Matt Nadareski
2024-12-11 08:59:20 -05:00
parent 9efd2ff02b
commit cdaf7a03d6
2 changed files with 1 additions and 1 deletions

View File

@@ -135,7 +135,7 @@ namespace SabreTools.Compression.Blast
/// <returns>Amount of data in Input</returns>
public uint ProcessInput()
{
Input = new List<byte>(InHow);
Input = [.. InHow];
return (uint)Input.Count;
}