diff --git a/NzbDrone.Core/Configuration/ConfigService.cs b/NzbDrone.Core/Configuration/ConfigService.cs index 3cc70d862..4f6b33494 100644 --- a/NzbDrone.Core/Configuration/ConfigService.cs +++ b/NzbDrone.Core/Configuration/ConfigService.cs @@ -43,48 +43,6 @@ namespace NzbDrone.Core.Configuration return dict; } - public String NzbsOrgUId - { - get { return GetValue("NzbsOrgUId"); } - - set { SetValue("NzbsOrgUId", value); } - } - - public String NzbsOrgHash - { - get { return GetValue("NzbsOrgHash"); } - - set { SetValue("NzbsOrgHash", value); } - } - - public String NzbsrusUId - { - get { return GetValue("NzbsrusUId"); } - - set { SetValue("NzbsrusUId", value); } - } - - public String NzbsrusHash - { - get { return GetValue("NzbsrusHash"); } - - set { SetValue("NzbsrusHash", value); } - } - - public String FileSharingTalkUid - { - get { return GetValue("FileSharingTalkUid"); } - - set { SetValue("FileSharingTalkUid", value); } - } - - public String FileSharingTalkSecret - { - get { return GetValue("FileSharingTalkSecret"); } - - set { SetValue("FileSharingTalkSecret", value); } - } - public String SabHost { get { return GetValue("SabHost", "localhost"); } @@ -389,17 +347,6 @@ namespace NzbDrone.Core.Configuration set { SetValue("RssSyncInterval", value); } } - public string OmgwtfnzbsUsername - { - get { return GetValue("OmgwtfnzbsUsername", String.Empty); } - set { SetValue("OmgwtfnzbsUsername", value); } - } - - public string OmgwtfnzbsApiKey - { - get { return GetValue("OmgwtfnzbsApiKey", String.Empty); } - set { SetValue("OmgwtfnzbsApiKey", value); } - } public Boolean IgnoreArticlesWhenSortingSeries { diff --git a/NzbDrone.Core/Configuration/IConfigService.cs b/NzbDrone.Core/Configuration/IConfigService.cs index 04fa7091a..754901ce8 100644 --- a/NzbDrone.Core/Configuration/IConfigService.cs +++ b/NzbDrone.Core/Configuration/IConfigService.cs @@ -11,12 +11,6 @@ namespace NzbDrone.Core.Configuration { IEnumerable All(); Dictionary AllWithDefaults(); - String NzbsOrgUId { get; set; } - String NzbsOrgHash { get; set; } - String NzbsrusUId { get; set; } - String NzbsrusHash { get; set; } - String FileSharingTalkUid { get; set; } - String FileSharingTalkSecret { get; set; } String SabHost { get; set; } int SabPort { get; set; } String SabApiKey { get; set; } @@ -65,8 +59,6 @@ namespace NzbDrone.Core.Configuration string PneumaticDirectory { get; set; } string RecycleBin { get; set; } int RssSyncInterval { get; set; } - string OmgwtfnzbsUsername { get; set; } - string OmgwtfnzbsApiKey { get; set; } Boolean IgnoreArticlesWhenSortingSeries { get; set; } String NzbgetUsername { get; set; } String NzbgetPassword { get; set; }