Remove org references from features

This commit is contained in:
Matt Nadareski
2026-07-04 22:44:16 -04:00
parent a0987345ff
commit f495722075
5 changed files with 3 additions and 8 deletions

View File

@@ -1,6 +1,5 @@
using System;
using SabreTools.CommandLine.Inputs;
using SabreTools.RedumpLib.RedumpOrg;
using SabreTools.RedumpLib.Web;
namespace RedumpTool.Features

View File

@@ -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))

View File

@@ -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)

View File

@@ -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))

View File

@@ -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