mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Inline 'out' variable declaration.
This commit is contained in:
@@ -299,9 +299,7 @@ public sealed partial class Sidecar
|
||||
xmlTrk.StartSector = trk.StartSector;
|
||||
xmlTrk.EndSector = trk.EndSector;
|
||||
|
||||
int idx0;
|
||||
|
||||
if(trk.Indexes?.TryGetValue(0, out idx0) == true &&
|
||||
if(trk.Indexes?.TryGetValue(0, out int idx0) == true &&
|
||||
idx0 >= 0)
|
||||
xmlTrk.StartSector = (ulong)idx0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user