aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 21:31:14 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 21:31:14 +0100
commita36658f6f0ed342d8b55dbf7c9ff95fe3abfa818 (patch)
treeb1484407efd83b243d0ea792b18c598e9ff53053 /MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs
parent9fa60ec9340cbc8b4ed3e866fcf61852077902a1 (diff)
ReSharper Reformat: Properties to expression bodied form.
Diffstat (limited to 'MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs')
-rw-r--r--MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs24
1 files changed, 3 insertions, 21 deletions
diff --git a/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs b/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs
index 7752bd03d..b28d2a548 100644
--- a/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs
+++ b/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs
@@ -37,28 +37,10 @@ namespace MediaBrowser.Providers.Playlists
{
}
- protected override bool EnableUpdatingGenresFromChildren
- {
- get
- {
- return true;
- }
- }
+ protected override bool EnableUpdatingGenresFromChildren => true;
- protected override bool EnableUpdatingOfficialRatingFromChildren
- {
- get
- {
- return true;
- }
- }
+ protected override bool EnableUpdatingOfficialRatingFromChildren => true;
- protected override bool EnableUpdatingStudiosFromChildren
- {
- get
- {
- return true;
- }
- }
+ protected override bool EnableUpdatingStudiosFromChildren => true;
}
}