aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/Collection.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/Collection.cs')
-rw-r--r--Jellyfin.Data/Entities/Collection.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Data/Entities/Collection.cs b/Jellyfin.Data/Entities/Collection.cs
index d2f441d03..01836d893 100644
--- a/Jellyfin.Data/Entities/Collection.cs
+++ b/Jellyfin.Data/Entities/Collection.cs
@@ -47,7 +47,7 @@ namespace Jellyfin.Data.Entities
{
int value = _Id;
GetId(ref value);
- return (_Id = value);
+ return _Id = value;
}
protected set
@@ -85,7 +85,7 @@ namespace Jellyfin.Data.Entities
{
string value = _Name;
GetName(ref value);
- return (_Name = value);
+ return _Name = value;
}
set