From 8116e66d52fabe5301a559f5a86fc91d7b130241 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 16 Dec 2017 22:20:05 -0500 Subject: [PATCH] Cleanup: Remove Unused Variables from ArtistResource.cs --- src/Lidarr.Api.V1/Artist/ArtistResource.cs | 2 -- src/NzbDrone.Core/Music/Artist.cs | 1 - 2 files changed, 3 deletions(-) diff --git a/src/Lidarr.Api.V1/Artist/ArtistResource.cs b/src/Lidarr.Api.V1/Artist/ArtistResource.cs index 9d16c6d8f..d8b42579c 100644 --- a/src/Lidarr.Api.V1/Artist/ArtistResource.cs +++ b/src/Lidarr.Api.V1/Artist/ArtistResource.cs @@ -29,8 +29,6 @@ public class ArtistResource : RestResource public string Overview { get; set; } public string ArtistType { get; set; } public string Disambiguation { get; set; } - public List PrimaryAlbumTypes { get; set; } - public List SecondaryAlbumTypes { get; set; } public List Links { get; set; } public int? AlbumCount { get; set; } diff --git a/src/NzbDrone.Core/Music/Artist.cs b/src/NzbDrone.Core/Music/Artist.cs index 7fceaafa8..4bd2288c3 100644 --- a/src/NzbDrone.Core/Music/Artist.cs +++ b/src/NzbDrone.Core/Music/Artist.cs @@ -4,7 +4,6 @@ using NzbDrone.Core.Profiles.Qualities; using NzbDrone.Core.Profiles.Languages; using NzbDrone.Core.Profiles.Metadata; -using NzbDrone.Core.Music; using System; using System.Collections.Generic; using System.Linq;