Browse Source

Refactored array usage

JPVenson 7 months ago
parent
commit
43a2ec990c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Jellyfin.Server.Implementations/Item/BaseItemRepository.cs

+ 4 - 4
Jellyfin.Server.Implementations/Item/BaseItemRepository.cs

@@ -157,13 +157,13 @@ public sealed class BaseItemRepository(
     /// <inheritdoc />
     public IReadOnlyList<string> GetStudioNames()
     {
-        return GetItemValueNames([ItemValueType.Studios], Array.Empty<string>(), Array.Empty<string>());
+        return GetItemValueNames([ItemValueType.Studios], [], []);
     }
 
     /// <inheritdoc />
     public IReadOnlyList<string> GetAllArtistNames()
     {
-        return GetItemValueNames([ItemValueType.Artist, ItemValueType.AlbumArtist], Array.Empty<string>(), Array.Empty<string>());
+        return GetItemValueNames([ItemValueType.Artist, ItemValueType.AlbumArtist], [], []);
     }
 
     /// <inheritdoc />
@@ -172,7 +172,7 @@ public sealed class BaseItemRepository(
         return GetItemValueNames(
             [ItemValueType.Genre],
             itemTypeLookup.MusicGenreTypes,
-            Array.Empty<string>());
+            []);
     }
 
     /// <inheritdoc />
@@ -180,7 +180,7 @@ public sealed class BaseItemRepository(
     {
         return GetItemValueNames(
             [ItemValueType.Genre],
-            Array.Empty<string>(),
+            [],
             itemTypeLookup.MusicGenreTypes);
     }