From 3ee3ba755623ff50b2027ea6b8cc43377c3a5965 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Fri, 30 Jan 2026 08:07:59 -0500 Subject: [PATCH] refactor: Update using statements for relocated types Updates imports across the codebase to reference the new namespaces for Formatting utilities, Document, BinFileSaver, and Toolbox. Co-Authored-By: Claude Opus 4.5 --- CutList.Core/Bin.cs | 4 +--- CutList/Forms/ResultsForm.cs | 7 +------ CutList/Helper.cs | 4 +--- CutList/Models/LengthItem.cs | 5 ++--- CutList/Presenters/MainFormPresenter.cs | 5 ----- CutList/Services/DocumentService.cs | 4 +--- 6 files changed, 6 insertions(+), 23 deletions(-) diff --git a/CutList.Core/Bin.cs b/CutList.Core/Bin.cs index 76b1a55..8b667da 100644 --- a/CutList.Core/Bin.cs +++ b/CutList.Core/Bin.cs @@ -1,6 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; +using CutList.Core.Formatting; namespace CutList.Core { diff --git a/CutList/Forms/ResultsForm.cs b/CutList/Forms/ResultsForm.cs index bbcb48c..de55232 100644 --- a/CutList/Forms/ResultsForm.cs +++ b/CutList/Forms/ResultsForm.cs @@ -1,10 +1,5 @@ using CutList.Core; -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Windows.Forms; +using CutList.Services; namespace CutList.Forms { diff --git a/CutList/Helper.cs b/CutList/Helper.cs index 686bf29..2349f27 100644 --- a/CutList/Helper.cs +++ b/CutList/Helper.cs @@ -1,6 +1,4 @@ -using CutList.Core; -using System.Drawing; -using System.Windows.Forms; +using CutList.Core.Formatting; namespace CutList { diff --git a/CutList/Models/LengthItem.cs b/CutList/Models/LengthItem.cs index 6e3c2e3..2bee1a0 100644 --- a/CutList/Models/LengthItem.cs +++ b/CutList/Models/LengthItem.cs @@ -1,6 +1,5 @@ -using Newtonsoft.Json; -using CutList.Core; -using System; +using CutList.Core.Formatting; +using Newtonsoft.Json; namespace CutList.Models { diff --git a/CutList/Presenters/MainFormPresenter.cs b/CutList/Presenters/MainFormPresenter.cs index d4b626d..8cf6982 100644 --- a/CutList/Presenters/MainFormPresenter.cs +++ b/CutList/Presenters/MainFormPresenter.cs @@ -1,10 +1,5 @@ -using CutList.Forms; using CutList.Models; using CutList.Services; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; namespace CutList.Presenters { diff --git a/CutList/Services/DocumentService.cs b/CutList/Services/DocumentService.cs index 87d4d58..de3df66 100644 --- a/CutList/Services/DocumentService.cs +++ b/CutList/Services/DocumentService.cs @@ -1,8 +1,6 @@ using CutList.Common; -using CutList.Forms; +using CutList.Models; using Newtonsoft.Json; -using System; -using System.IO; namespace CutList.Services {