diff --git a/CutList.Core/BestCombination.cs b/CutList.Core/BestCombination.cs index eaca643..cb70aad 100644 --- a/CutList.Core/BestCombination.cs +++ b/CutList.Core/BestCombination.cs @@ -1,6 +1,4 @@ -using System; - -namespace CutList.Core +namespace CutList.Core { public static class BestCombination { diff --git a/CutList.Core/BinComparer.cs b/CutList.Core/BinComparer.cs index 7ab8600..9c64d09 100644 --- a/CutList.Core/BinComparer.cs +++ b/CutList.Core/BinComparer.cs @@ -1,7 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; - namespace CutList.Core { /// diff --git a/CutList.Core/BinGroup.cs b/CutList.Core/BinGroup.cs index 81be70b..23d3f11 100644 --- a/CutList.Core/BinGroup.cs +++ b/CutList.Core/BinGroup.cs @@ -1,7 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; - namespace CutList.Core { /// diff --git a/CutList.Core/MultiBin.cs b/CutList.Core/MultiBin.cs index d25154f..3d07cbd 100644 --- a/CutList.Core/MultiBin.cs +++ b/CutList.Core/MultiBin.cs @@ -1,6 +1,4 @@ -using System; - -namespace CutList.Core +namespace CutList.Core { /// /// Represents a type of bin with quantity and priority. diff --git a/CutList.Core/Nesting/AdvancedFitEngine.cs b/CutList.Core/Nesting/AdvancedFitEngine.cs index 93314ee..5f7a024 100644 --- a/CutList.Core/Nesting/AdvancedFitEngine.cs +++ b/CutList.Core/Nesting/AdvancedFitEngine.cs @@ -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 { diff --git a/CutList.Core/Nesting/BestFitEngine.cs b/CutList.Core/Nesting/BestFitEngine.cs index 3d752bc..3352130 100644 --- a/CutList.Core/Nesting/BestFitEngine.cs +++ b/CutList.Core/Nesting/BestFitEngine.cs @@ -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 diff --git a/CutList.Core/Nesting/IEngine.cs b/CutList.Core/Nesting/IEngine.cs index 6182bc1..e7d57d3 100644 --- a/CutList.Core/Nesting/IEngine.cs +++ b/CutList.Core/Nesting/IEngine.cs @@ -1,6 +1,4 @@ -using System.Collections.Generic; - -namespace CutList.Core.Nesting +namespace CutList.Core.Nesting { public interface IEngine { diff --git a/CutList.Core/Nesting/MultiBinEngine.cs b/CutList.Core/Nesting/MultiBinEngine.cs index 757ee23..45a956f 100644 --- a/CutList.Core/Nesting/MultiBinEngine.cs +++ b/CutList.Core/Nesting/MultiBinEngine.cs @@ -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 { diff --git a/CutList.Core/Nesting/Result.cs b/CutList.Core/Nesting/Result.cs index f288f6f..ed358f0 100644 --- a/CutList.Core/Nesting/Result.cs +++ b/CutList.Core/Nesting/Result.cs @@ -1,6 +1,4 @@ -using System.Collections.Generic; - -namespace CutList.Core.Nesting +namespace CutList.Core.Nesting { public class Result { diff --git a/CutList.Core/Tolerance.cs b/CutList.Core/Tolerance.cs index 419c2a4..be2baa3 100644 --- a/CutList.Core/Tolerance.cs +++ b/CutList.Core/Tolerance.cs @@ -1,6 +1,4 @@ -using System; - -namespace CutList.Core +namespace CutList.Core { public static class Tolerance { diff --git a/CutList/Common/Result.cs b/CutList/Common/Result.cs index 628bf7e..80cc1fa 100644 --- a/CutList/Common/Result.cs +++ b/CutList/Common/Result.cs @@ -1,5 +1,3 @@ -using System; - namespace CutList.Common { /// diff --git a/CutList/Controls/BinLayoutView.cs b/CutList/Controls/BinLayoutView.cs index 2efb8a7..c7119b8 100644 --- a/CutList/Controls/BinLayoutView.cs +++ b/CutList/Controls/BinLayoutView.cs @@ -1,8 +1,5 @@ using CutList.Core; -using System; -using System.Drawing; using System.Drawing.Drawing2D; -using System.Windows.Forms; namespace CutList.Controls { diff --git a/CutList/Forms/DataGridViewExtensions.cs b/CutList/Forms/DataGridViewExtensions.cs index 0340c00..2928af1 100644 --- a/CutList/Forms/DataGridViewExtensions.cs +++ b/CutList/Forms/DataGridViewExtensions.cs @@ -1,7 +1,4 @@ -using System.Drawing; -using System.Windows.Forms; - -namespace CutList.Forms +namespace CutList.Forms { public static class DataGridViewExtensions { diff --git a/CutList/Forms/MainForm.cs b/CutList/Forms/MainForm.cs index d125b26..71d02f3 100644 --- a/CutList/Forms/MainForm.cs +++ b/CutList/Forms/MainForm.cs @@ -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 { diff --git a/CutList/Presenters/IMainView.cs b/CutList/Presenters/IMainView.cs index a133ea4..93a1882 100644 --- a/CutList/Presenters/IMainView.cs +++ b/CutList/Presenters/IMainView.cs @@ -1,6 +1,5 @@ -using CutList.Models; using CutList.Core; -using System.Collections.Generic; +using CutList.Models; namespace CutList.Presenters { diff --git a/CutList/Program.cs b/CutList/Program.cs index 15dc03d..0b6c0da 100644 --- a/CutList/Program.cs +++ b/CutList/Program.cs @@ -1,7 +1,4 @@ -using System; -using System.Windows.Forms; - -namespace CutList +namespace CutList { internal static class Program { diff --git a/CutList/Services/CutListService.cs b/CutList/Services/CutListService.cs index f0f3493..51ca624 100644 --- a/CutList/Services/CutListService.cs +++ b/CutList/Services/CutListService.cs @@ -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 { diff --git a/CutList/Tool.cs b/CutList/Tool.cs index c3bef52..e533d48 100644 --- a/CutList/Tool.cs +++ b/CutList/Tool.cs @@ -1,6 +1,4 @@ -using System; - -namespace CutList +namespace CutList { /// /// Represents a cutting tool with its kerf (blade width).