mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 07:10:45 +00:00
resharper suggestions in server implementations
This commit is contained in:
parent
ff1db0a173
commit
7097b9aa75
18 changed files with 27 additions and 57 deletions
|
|
@ -298,7 +298,7 @@ namespace MediaBrowser.Server.Implementations.MediaEncoder
|
|||
/// <exception cref="System.ArgumentException">Unrecognized InputType</exception>
|
||||
public string GetInputArgument(string[] inputFiles, InputType type)
|
||||
{
|
||||
string inputPath = null;
|
||||
string inputPath;
|
||||
|
||||
switch (type)
|
||||
{
|
||||
|
|
@ -439,7 +439,7 @@ namespace MediaBrowser.Server.Implementations.MediaEncoder
|
|||
{
|
||||
var lines = standardError.Split('\n').Select(l => l.TrimStart());
|
||||
|
||||
var chapters = new List<ChapterInfo> { };
|
||||
var chapters = new List<ChapterInfo>();
|
||||
|
||||
ChapterInfo lastChapter = null;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue