Apply suggestions from code review
Drop the unnecessary initial capacity from the list. Signed-off-by: nyanmisaka <nst799610810@gmail.com>
This commit is contained in:
parent
a3ba974b7b
commit
557b8f0c78
|
@ -156,7 +156,7 @@ public class TranscodingSegmentCleaner : IDisposable
|
||||||
}
|
}
|
||||||
catch (IOException ex)
|
catch (IOException ex)
|
||||||
{
|
{
|
||||||
(exs ??= new List<Exception>(4)).Add(ex);
|
(exs ??= new List<Exception>()).Add(ex);
|
||||||
_logger.LogDebug(ex, "Error deleting HLS segment file {Path}", file);
|
_logger.LogDebug(ex, "Error deleting HLS segment file {Path}", file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -321,7 +321,7 @@ public sealed class TranscodeManager : ITranscodeManager, IDisposable
|
||||||
}
|
}
|
||||||
catch (IOException ex)
|
catch (IOException ex)
|
||||||
{
|
{
|
||||||
(exs ??= new List<Exception>(4)).Add(ex);
|
(exs ??= new List<Exception>()).Add(ex);
|
||||||
_logger.LogError(ex, "Error deleting HLS file {Path}", file);
|
_logger.LogError(ex, "Error deleting HLS file {Path}", file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user