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 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 08:07:59 -05:00
parent 8bbab7beda
commit 3ee3ba7556
6 changed files with 6 additions and 23 deletions

View File

@@ -1,6 +1,4 @@
using System; using CutList.Core.Formatting;
using System.Collections.Generic;
using System.Linq;
namespace CutList.Core namespace CutList.Core
{ {

View File

@@ -1,10 +1,5 @@
using CutList.Core; using CutList.Core;
using System; using CutList.Services;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Windows.Forms;
namespace CutList.Forms namespace CutList.Forms
{ {

View File

@@ -1,6 +1,4 @@
using CutList.Core; using CutList.Core.Formatting;
using System.Drawing;
using System.Windows.Forms;
namespace CutList namespace CutList
{ {

View File

@@ -1,6 +1,5 @@
using Newtonsoft.Json; using CutList.Core.Formatting;
using CutList.Core; using Newtonsoft.Json;
using System;
namespace CutList.Models namespace CutList.Models
{ {

View File

@@ -1,10 +1,5 @@
using CutList.Forms;
using CutList.Models; using CutList.Models;
using CutList.Services; using CutList.Services;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace CutList.Presenters namespace CutList.Presenters
{ {

View File

@@ -1,8 +1,6 @@
using CutList.Common; using CutList.Common;
using CutList.Forms; using CutList.Models;
using Newtonsoft.Json; using Newtonsoft.Json;
using System;
using System.IO;
namespace CutList.Services namespace CutList.Services
{ {