diff --git a/Locomotives/Locomotives/SetLocomotivesGeneric.cs b/Locomotives/Locomotives/SetLocomotivesGeneric.cs index e5e0bb2..88cee91 100644 --- a/Locomotives/Locomotives/SetLocomotivesGeneric.cs +++ b/Locomotives/Locomotives/SetLocomotivesGeneric.cs @@ -26,7 +26,6 @@ /// public int Insert(T locomotive) { - // TODO проверка на наличие свободных мест T testLocomotive = _places[0]; for (int i = 0; i < Count; i++) { @@ -54,11 +53,6 @@ /// public int Insert(T locomotive, int position) { - // TODO проверка позиции - // TODO проверка, что элемент массива по этой позиции пустой, если нет, то - // проверка, что после вставляемого элемента в массиве есть пустой элемент - // сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента - // TODO вставка по позиции if (position < 0 || position >= Count) { return position; @@ -87,8 +81,6 @@ /// public int Remove(int position) { - // TODO проверка позиции - // TODO удаление объекта из массива, присовив элементу массива значение null if (_places[position] == null) { return -1; @@ -103,7 +95,6 @@ /// public T Get(int position) { - // TODO проверка позиции if (_places[position] != null) { return _places[position];