From f49572207552a0891ae19989f8ba2c0f698d0137 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 4 Jul 2026 22:44:16 -0400 Subject: [PATCH] Remove org references from features --- RedumpTool/Features/PacksFeature.cs | 1 - RedumpTool/Features/QueryFeature.cs | 3 +-- RedumpTool/Features/SiteFeature.cs | 3 +-- RedumpTool/Features/UserFeature.cs | 3 +-- RedumpTool/Features/WIPFeature.cs | 1 - 5 files changed, 3 insertions(+), 8 deletions(-) diff --git a/RedumpTool/Features/PacksFeature.cs b/RedumpTool/Features/PacksFeature.cs index a883704..5be45e4 100644 --- a/RedumpTool/Features/PacksFeature.cs +++ b/RedumpTool/Features/PacksFeature.cs @@ -1,6 +1,5 @@ using System; using SabreTools.CommandLine.Inputs; -using SabreTools.RedumpLib.RedumpOrg; using SabreTools.RedumpLib.Web; namespace RedumpTool.Features diff --git a/RedumpTool/Features/QueryFeature.cs b/RedumpTool/Features/QueryFeature.cs index d4ac966..b4f3a6e 100644 --- a/RedumpTool/Features/QueryFeature.cs +++ b/RedumpTool/Features/QueryFeature.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.Threading.Tasks; using SabreTools.CommandLine.Inputs; using SabreTools.RedumpLib.Data; -using SabreTools.RedumpLib.RedumpOrg; using SabreTools.RedumpLib.Web; namespace RedumpTool.Features @@ -72,7 +71,7 @@ namespace RedumpTool.Features int limit = LimitInput.Value ?? -1; // Build the disc subpaths - DiscSubpath[]? discSubpaths = SabreTools.RedumpLib.Data.Constants.AllDiscSubpaths; + DiscSubpath[]? discSubpaths = Constants.AllDiscSubpaths; // Output directory validation if (!onlyList && !ValidateAndCreateOutputDirectory(outDir)) diff --git a/RedumpTool/Features/SiteFeature.cs b/RedumpTool/Features/SiteFeature.cs index 30143e4..1cde363 100644 --- a/RedumpTool/Features/SiteFeature.cs +++ b/RedumpTool/Features/SiteFeature.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.Threading.Tasks; using SabreTools.CommandLine.Inputs; using SabreTools.RedumpLib.Data; -using SabreTools.RedumpLib.RedumpOrg; using SabreTools.RedumpLib.Web; namespace RedumpTool.Features @@ -135,7 +134,7 @@ namespace RedumpTool.Features int limit = LimitInput.Value ?? -1; // Build the disc subpaths - DiscSubpath[] discSubpaths = SabreTools.RedumpLib.Data.Constants.AllDiscSubpaths; + DiscSubpath[] discSubpaths = Constants.AllDiscSubpaths; // Override individual flags if shorthand flags used if (onlyNew) diff --git a/RedumpTool/Features/UserFeature.cs b/RedumpTool/Features/UserFeature.cs index 6dd5f0f..b7ac20d 100644 --- a/RedumpTool/Features/UserFeature.cs +++ b/RedumpTool/Features/UserFeature.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.Threading.Tasks; using SabreTools.CommandLine.Inputs; using SabreTools.RedumpLib.Data; -using SabreTools.RedumpLib.RedumpOrg; using SabreTools.RedumpLib.Web; namespace RedumpTool.Features @@ -72,7 +71,7 @@ namespace RedumpTool.Features int limit = LimitInput.Value ?? -1; // Build the disc subpaths - DiscSubpath[]? discSubpaths = SabreTools.RedumpLib.Data.Constants.AllDiscSubpaths; + DiscSubpath[]? discSubpaths = Constants.AllDiscSubpaths; // Output directory validation if (!onlyList && !ValidateAndCreateOutputDirectory(outDir)) diff --git a/RedumpTool/Features/WIPFeature.cs b/RedumpTool/Features/WIPFeature.cs index 042dc27..641dce3 100644 --- a/RedumpTool/Features/WIPFeature.cs +++ b/RedumpTool/Features/WIPFeature.cs @@ -2,7 +2,6 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; using SabreTools.CommandLine.Inputs; -using SabreTools.RedumpLib.RedumpOrg; using SabreTools.RedumpLib.Web; namespace RedumpTool.Features