mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-28 23:42:24 +00:00
ReSharper Reformat: Properties to expression bodied form.
This commit is contained in:
@@ -53,10 +53,6 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
return null;
|
||||
}
|
||||
|
||||
protected override bool IsVideoEncoder
|
||||
{
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
protected override bool IsVideoEncoder => false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,8 +20,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
|
||||
public EncodingJobOptions Options
|
||||
{
|
||||
get { return (EncodingJobOptions)BaseRequest; }
|
||||
set { BaseRequest = value; }
|
||||
get => (EncodingJobOptions)BaseRequest;
|
||||
set => BaseRequest = value;
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
@@ -415,10 +415,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
/// Gets the encoder path.
|
||||
/// </summary>
|
||||
/// <value>The encoder path.</value>
|
||||
public string EncoderPath
|
||||
{
|
||||
get { return FFMpegPath; }
|
||||
}
|
||||
public string EncoderPath => FFMpegPath;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the media info.
|
||||
|
||||
@@ -54,10 +54,6 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
return null;
|
||||
}
|
||||
|
||||
protected override bool IsVideoEncoder
|
||||
{
|
||||
get { return true; }
|
||||
}
|
||||
|
||||
protected override bool IsVideoEncoder => true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user