remove redundant null check

This commit is contained in:
cvium 2022-07-30 21:54:03 +02:00
parent f2c7bccb89
commit a380153f92
1 changed files with 0 additions and 5 deletions

View File

@ -94,11 +94,6 @@ namespace MediaBrowser.MediaEncoding.Subtitles
{
var subtitleFormats = new List<SubtitleFormat>();
var assembly = typeof(SubtitleFormat).Assembly;
if (assembly == null)
{
_logger.LogError("Missing assembly containing {SubtitleFormatName}", nameof(SubtitleFormat));
return GetFallbackSubtitleFormats();
}
foreach (var type in assembly.GetTypes())
{