aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-11 19:15:33 -0400
committer1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-11 19:15:33 -0400
commit31ec521f5ebfdffc1c38b4c67e7632933041a988 (patch)
tree7caea0782554524dd9961820d1eb455738837b41
parentcecca5f715f70b263f81b5c44dfcee5c38d53bf8 (diff)
Remove now unused variables
-rw-r--r--Jellyfin.Api/Helpers/ItemHelper.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/Jellyfin.Api/Helpers/ItemHelper.cs b/Jellyfin.Api/Helpers/ItemHelper.cs
index 0afe5a155..49bb8af8e 100644
--- a/Jellyfin.Api/Helpers/ItemHelper.cs
+++ b/Jellyfin.Api/Helpers/ItemHelper.cs
@@ -23,8 +23,6 @@ namespace Jellyfin.Api.Helpers
/// <returns>Collection of Lyrics.</returns>
internal static object? GetLyricData(BaseItem item)
{
- List<ILyricsProvider> providerList = new List<ILyricsProvider>();
-
// Find all classes that implement ILyricsProvider Interface
var foundLyricProviders = System.Reflection.Assembly.GetExecutingAssembly()
.GetTypes()
@@ -58,8 +56,6 @@ namespace Jellyfin.Api.Helpers
/// <returns>True if item has a matching lyrics file.</returns>
public static string? GetLyricFilePath(string itemPath)
{
- List<string> supportedLyricFileExtensions = new List<string>();
-
// Find all classes that implement ILyricsProvider Interface
var foundLyricProviders = System.Reflection.Assembly.GetExecutingAssembly()
.GetTypes()