cosmetic changes

This commit is contained in:
strwbrry1 2024-04-03 15:49:23 +04:00
parent f3dc0a4866
commit cbf8e6fb24
2 changed files with 1 additions and 2 deletions

View File

@ -87,7 +87,6 @@ namespace Catamaran.CollectionGenericObjects
{
if (position > Count || position < 0)
{
return null;
}
T? obj = _collection[position];

View File

@ -155,7 +155,7 @@ namespace Catamaran
for (int i = 0; i < _storageCollection.Keys?.Count; ++i)
{
string? colName = _storageCollection.Keys?[i];
if (!string.IsNullOrEmpty(colName) )
if (!string.IsNullOrEmpty(colName))
{
listBoxCollection.Items.Add(colName);
}