From 209b4fe7c75d1663d6f8e6620ab3880c3f02f7b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B5=D0=BB=D1=8C=D0=BD=D0=B8=D0=BA=D0=BE=D0=B2=20?= =?UTF-8?q?=D0=98=D0=B3=D0=BE=D1=80=D1=8C?= Date: Thu, 20 Oct 2022 16:39:02 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BE=D0=BC?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D1=82=D0=B0=D1=80=D0=B8=D0=B5=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Locomotives/Locomotives/SetLocomotivesGeneric.cs | 9 --------- 1 file changed, 9 deletions(-) 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];