From a0987345ff41fcab7616cfca5d78e9157abde939 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 4 Jul 2026 22:41:47 -0400 Subject: [PATCH] Remove org client from base feature --- RedumpTool/Features/BaseFeature.cs | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/RedumpTool/Features/BaseFeature.cs b/RedumpTool/Features/BaseFeature.cs index 65a1aa7..40a9b30 100644 --- a/RedumpTool/Features/BaseFeature.cs +++ b/RedumpTool/Features/BaseFeature.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.IO; using SabreTools.CommandLine; using SabreTools.CommandLine.Inputs; +using SabreTools.RedumpLib.Web; namespace RedumpTool.Features { @@ -102,20 +103,14 @@ namespace RedumpTool.Features /// /// redump.info client to use for external connections /// - protected SabreTools.RedumpLib.Web.Client _client; - - /// - /// redump.org client to use for external connections - /// - protected SabreTools.RedumpLib.RedumpOrg.Client _orgClient; + protected Client _client; #endregion public BaseFeature(string name, string[] flags, string description, string? detailed = null) : base(name, flags, description, detailed) { - _client = new SabreTools.RedumpLib.Web.Client(); - _orgClient = new SabreTools.RedumpLib.RedumpOrg.Client(); + _client = new Client(); } #region Helpers