chore: Remove unused using statements

Cleanup of unnecessary imports across the codebase.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 08:08:49 -05:00
parent 410b4ba550
commit 04494a6744
18 changed files with 16 additions and 68 deletions

View File

@@ -1,6 +1,4 @@
using System;
namespace CutList.Core
namespace CutList.Core
{
public static class BestCombination
{

View File

@@ -1,7 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace CutList.Core
{
/// <summary>

View File

@@ -1,7 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace CutList.Core
{
/// <summary>

View File

@@ -1,6 +1,4 @@
using System;
namespace CutList.Core
namespace CutList.Core
{
/// <summary>
/// Represents a type of bin with quantity and priority.

View File

@@ -1,9 +1,4 @@
using CutList.Core.Nesting;
using CutList.Core;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Data;
namespace CutList.Core.Nesting
{

View File

@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Data;
namespace CutList.Core.Nesting
{

View File

@@ -1,6 +1,4 @@
using System.Collections.Generic;
namespace CutList.Core.Nesting
namespace CutList.Core.Nesting
{
public interface IEngine
{

View File

@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace CutList.Core.Nesting
namespace CutList.Core.Nesting
{
public class MultiBinEngine : IEngine
{

View File

@@ -1,6 +1,4 @@
using System.Collections.Generic;
namespace CutList.Core.Nesting
namespace CutList.Core.Nesting
{
public class Result
{

View File

@@ -1,6 +1,4 @@
using System;
namespace CutList.Core
namespace CutList.Core
{
public static class Tolerance
{

View File

@@ -1,5 +1,3 @@
using System;
namespace CutList.Common
{
/// <summary>

View File

@@ -1,8 +1,5 @@
using CutList.Core;
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace CutList.Controls
{

View File

@@ -1,7 +1,4 @@
using System.Drawing;
using System.Windows.Forms;
namespace CutList.Forms
namespace CutList.Forms
{
public static class DataGridViewExtensions
{

View File

@@ -1,14 +1,8 @@
using CutList.Models;
using CutList.Core;
using CutList.Models;
using CutList.Presenters;
using CutList.Services;
using CutList.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace CutList.Forms
{

View File

@@ -1,6 +1,5 @@
using CutList.Models;
using CutList.Core;
using System.Collections.Generic;
using CutList.Models;
namespace CutList.Presenters
{

View File

@@ -1,7 +1,4 @@
using System;
using System.Windows.Forms;
namespace CutList
namespace CutList
{
internal static class Program
{

View File

@@ -1,9 +1,7 @@
using CutList.Common;
using CutList.Models;
using CutList.Core;
using CutList.Core.Nesting;
using System;
using System.Collections.Generic;
using CutList.Models;
namespace CutList.Services
{

View File

@@ -1,6 +1,4 @@
using System;
namespace CutList
namespace CutList
{
/// <summary>
/// Represents a cutting tool with its kerf (blade width).