Remove unused usings

This commit is contained in:
Bond_009
2020-03-24 16:12:06 +01:00
parent da4855ce4f
commit e9d1eabd53
51 changed files with 112 additions and 123 deletions

View File

@@ -753,10 +753,10 @@ namespace MediaBrowser.MediaEncoding.Subtitles
return _httpClient.Get(opts);
case MediaProtocol.File:
return Task.FromResult<Stream>(File.OpenRead(path));
default:
throw new ArgumentOutOfRangeException(nameof(protocol));
case MediaProtocol.File:
return Task.FromResult<Stream>(File.OpenRead(path));
default:
throw new ArgumentOutOfRangeException(nameof(protocol));
}
}
}