небольшие корректировки лабы 7

This commit is contained in:
Полина Чубыкина 2023-12-23 16:17:34 +04:00
parent d4e32d2ba9
commit 504ea1e2a3
3 changed files with 4 additions and 6 deletions

View File

@ -74,7 +74,10 @@ namespace Sailboat.Generics
public static T? operator -(BoatsGenericCollection<T, U> collect, int pos)
{
T? obj = collect._collection[pos];
collect._collection.Remove(pos);
if (obj != null)
{
collect._collection.Remove(pos);
}
return obj;
}

View File

@ -184,6 +184,5 @@ namespace Sailboat.Generics
}
}
}
}
}

View File

@ -130,8 +130,6 @@ namespace Sailboat
MessageBox.Show(ex.Message);
_logger.LogWarning($"{ex.Message} из набора {listBoxStorages.SelectedItem.ToString()}");
}
}
private void buttonRefreshCollection_Click(object sender, EventArgs e)
@ -147,7 +145,6 @@ namespace Sailboat
return;
}
pictureBoxCollection.Image = obj.ShowBoats();
}
private void buttonAddObject_Click(object sender, EventArgs e)
@ -222,6 +219,5 @@ namespace Sailboat
}
}
}
}
}