mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-29 06:28:19 +00:00
ReSharper conform to 'var' settings
This commit is contained in:
@@ -152,7 +152,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
|
||||
private string GetProcessOutput(string path, string arguments)
|
||||
{
|
||||
IProcess process = _processFactory.Create(new ProcessOptions
|
||||
var process = _processFactory.Create(new ProcessOptions
|
||||
{
|
||||
CreateNoWindow = true,
|
||||
UseShellExecute = false,
|
||||
|
||||
@@ -457,7 +457,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
/// <param name="inputFiles">The input files.</param>
|
||||
/// <param name="protocol">The protocol.</param>
|
||||
/// <returns>System.String.</returns>
|
||||
/// <exception cref="System.ArgumentException">Unrecognized InputType</exception>
|
||||
/// <exception cref="ArgumentException">Unrecognized InputType</exception>
|
||||
public string GetInputArgument(string[] inputFiles, MediaProtocol protocol)
|
||||
{
|
||||
return EncodingUtils.GetInputArgument(inputFiles.ToList(), protocol);
|
||||
|
||||
Reference in New Issue
Block a user