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,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
{
@@ -70,7 +67,7 @@ namespace CutList.Core.Nesting
if (best_bin != null)
best_bin.AddItem(item);
}
return bins

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
{