mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Use Array.Empty<T>.
This commit is contained in:
@@ -288,7 +288,7 @@ namespace Aaru.Gui.ViewModels.Panels
|
||||
|
||||
try
|
||||
{
|
||||
byte[] outBuf = new byte[0];
|
||||
byte[] outBuf = Array.Empty<byte>();
|
||||
|
||||
Errno error = _model.Plugin.Read(_model.Path + "/" + file.Name, 0, file.Stat.Length, ref outBuf);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user