diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/CollectionGenericObjects/ICollectionGenericObjects.cs b/ProjectWarmlyShip/ProjectWarmlyShip/CollectionGenericObjects/ICollectionGenericObjects.cs index ea88d39..41f74ef 100644 --- a/ProjectWarmlyShip/ProjectWarmlyShip/CollectionGenericObjects/ICollectionGenericObjects.cs +++ b/ProjectWarmlyShip/ProjectWarmlyShip/CollectionGenericObjects/ICollectionGenericObjects.cs @@ -1,6 +1,4 @@ -using ProjectWarmlyShip.Drawnings; - -namespace ProjectWarmlyShip.CollectionGenericObjects; +namespace ProjectWarmlyShip.CollectionGenericObjects; public interface ICollectionGenericObjects where T : class diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/CollectionGenericObjects/ListGenericObjects.cs b/ProjectWarmlyShip/ProjectWarmlyShip/CollectionGenericObjects/ListGenericObjects.cs index 76e0b94..d62ddb9 100644 --- a/ProjectWarmlyShip/ProjectWarmlyShip/CollectionGenericObjects/ListGenericObjects.cs +++ b/ProjectWarmlyShip/ProjectWarmlyShip/CollectionGenericObjects/ListGenericObjects.cs @@ -1,7 +1,4 @@ -using ProjectWarmlyShip.Drawnings; -using ProjectWarmlyShip.Exceptions; -using System.Linq; -using System.Runtime.Serialization; +using ProjectWarmlyShip.Exceptions; namespace ProjectWarmlyShip.CollectionGenericObjects; @@ -84,7 +81,6 @@ public class ListGenericObjects : ICollectionGenericObjects yield return _collection[i]; } } - void ICollectionGenericObjects.CollectionSort(IComparer comparer) { _collection.Sort(comparer);