aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-01-11 18:13:16 +0000
committerJPVenson <github@jpb.email>2025-01-11 18:13:16 +0000
commitd716a53ec2433c6af43dfbce7f92fc9c2927592a (patch)
tree1febb8fbfab24eb43cea3c116a19adac8e322164 /Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
parentdcfbf55794ae5f273a63bc976d2e8dcc8a2c574d (diff)
Applied review comments
Diffstat (limited to 'Jellyfin.Server.Implementations/Item/BaseItemRepository.cs')
-rw-r--r--Jellyfin.Server.Implementations/Item/BaseItemRepository.cs18
1 files changed, 3 insertions, 15 deletions
diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
index e087bd328..01e23f56d 100644
--- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
+++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
@@ -41,8 +41,8 @@ using BaseItemEntity = Jellyfin.Data.Entities.BaseItemEntity;
namespace Jellyfin.Server.Implementations.Item;
/*
- All queries in this class and all other nullable enabled EFCore repository classes will make libraral use of the null-forgiving operator "!".
- This is done as the code isn't actually executed client side, but only the expressions are interpretet and the compiler cannot know that.
+ All queries in this class and all other nullable enabled EFCore repository classes will make liberal use of the null-forgiving operator "!".
+ This is done as the code isn't actually executed client side, but only the expressions are interpret and the compiler cannot know that.
This is your only warning/message regarding this topic.
*/
@@ -50,7 +50,7 @@ namespace Jellyfin.Server.Implementations.Item;
/// Handles all storage logic for BaseItems.
/// </summary>
public sealed class BaseItemRepository
- : IItemRepository, IDisposable
+ : IItemRepository
{
/// <summary>
/// This holds all the types in the running assemblies
@@ -62,7 +62,6 @@ public sealed class BaseItemRepository
private readonly IItemTypeLookup _itemTypeLookup;
private readonly IServerConfigurationManager _serverConfigurationManager;
private readonly ILogger<BaseItemRepository> _logger;
- private bool _disposed;
private static readonly IReadOnlyList<ItemValueType> _getAllArtistsValueTypes = [ItemValueType.Artist, ItemValueType.AlbumArtist];
private static readonly IReadOnlyList<ItemValueType> _getArtistValueTypes = [ItemValueType.Artist];
@@ -92,17 +91,6 @@ public sealed class BaseItemRepository
_logger = logger;
}
- /// <inheritdoc/>
- public void Dispose()
- {
- if (_disposed)
- {
- return;
- }
-
- _disposed = true;
- }
-
/// <inheritdoc />
public void DeleteItem(Guid id)
{