mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 06:48:35 +01:00
ReSharper Reformat: Properties to expression bodied form.
This commit is contained in:
@@ -83,10 +83,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
|
||||
return _encryption.DecryptString(password.Substring(2));
|
||||
}
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return "Open Subtitles"; }
|
||||
}
|
||||
public string Name => "Open Subtitles";
|
||||
|
||||
private SubtitleOptions GetOptions()
|
||||
{
|
||||
|
||||
@@ -60,13 +60,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
|
||||
_textEncoding = textEncoding;
|
||||
}
|
||||
|
||||
private string SubtitleCachePath
|
||||
{
|
||||
get
|
||||
{
|
||||
return Path.Combine(_appPaths.DataPath, "subtitles");
|
||||
}
|
||||
}
|
||||
private string SubtitleCachePath => Path.Combine(_appPaths.DataPath, "subtitles");
|
||||
|
||||
private Stream ConvertSubtitles(Stream stream,
|
||||
string inputFormat,
|
||||
|
||||
Reference in New Issue
Block a user