Skip to content

Commit

Permalink
cleanup: remove unused dictionary in api manager
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Oct 31, 2024
1 parent 45473eb commit 3f9a883
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Shokofin/API/ShokoAPIManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ public class ShokoAPIManager : IDisposable

private readonly ConcurrentDictionary<string, string> PathToSeriesIdDictionary = new();

private readonly ConcurrentDictionary<string, string> NameToSeriesIdDictionary = new();

private readonly ConcurrentDictionary<string, List<string>> PathToEpisodeIdsDictionary = new();

private readonly ConcurrentDictionary<string, (string FileId, string SeriesId)> PathToFileIdAndSeriesIdDictionary = new();
Expand Down Expand Up @@ -135,7 +133,6 @@ public void Clear()
PathToEpisodeIdsDictionary.Clear();
PathToFileIdAndSeriesIdDictionary.Clear();
PathToSeriesIdDictionary.Clear();
NameToSeriesIdDictionary.Clear();
SeriesIdToDefaultSeriesIdDictionary.Clear();
SeriesIdToCollectionIdDictionary.Clear();
DataCache.Clear();
Expand Down

0 comments on commit 3f9a883

Please sign in to comment.