mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-04 21:32:53 +01:00
ReSharper format: conform inline 'out' parameters.
This commit is contained in:
@@ -31,10 +31,9 @@ namespace DvdLib.Ifo
|
||||
foreach (var ifo in allIfos)
|
||||
{
|
||||
var num = ifo.Name.Split('_').ElementAtOrDefault(1);
|
||||
ushort ifoNumber;
|
||||
var numbersRead = new List<ushort>();
|
||||
|
||||
if (!string.IsNullOrEmpty(num) && ushort.TryParse(num, out ifoNumber) && !numbersRead.Contains(ifoNumber))
|
||||
if (!string.IsNullOrEmpty(num) && ushort.TryParse(num, out var ifoNumber) && !numbersRead.Contains(ifoNumber))
|
||||
{
|
||||
ReadVTS(ifoNumber, ifo.FullName);
|
||||
numbersRead.Add(ifoNumber);
|
||||
|
||||
Reference in New Issue
Block a user