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:
@@ -1,6 +1,4 @@
|
||||
using System;
|
||||
|
||||
namespace CutList.Core
|
||||
namespace CutList.Core
|
||||
{
|
||||
public static class BestCombination
|
||||
{
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace CutList.Core
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace CutList.Core
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
using System;
|
||||
|
||||
namespace CutList.Core
|
||||
namespace CutList.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a type of bin with quantity and priority.
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CutList.Core.Nesting
|
||||
namespace CutList.Core.Nesting
|
||||
{
|
||||
public interface IEngine
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CutList.Core.Nesting
|
||||
namespace CutList.Core.Nesting
|
||||
{
|
||||
public class Result
|
||||
{
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
using System;
|
||||
|
||||
namespace CutList.Core
|
||||
namespace CutList.Core
|
||||
{
|
||||
public static class Tolerance
|
||||
{
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
using System;
|
||||
|
||||
namespace CutList.Common
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -1,8 +1,5 @@
|
||||
using CutList.Core;
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Drawing.Drawing2D;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace CutList.Controls
|
||||
{
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
using System.Drawing;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace CutList.Forms
|
||||
namespace CutList.Forms
|
||||
{
|
||||
public static class DataGridViewExtensions
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
using CutList.Models;
|
||||
using CutList.Core;
|
||||
using System.Collections.Generic;
|
||||
using CutList.Models;
|
||||
|
||||
namespace CutList.Presenters
|
||||
{
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace CutList
|
||||
namespace CutList
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
using System;
|
||||
|
||||
namespace CutList
|
||||
namespace CutList
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a cutting tool with its kerf (blade width).
|
||||
|
||||
Reference in New Issue
Block a user