Misc cleanups/Fixes

This commit is contained in:
hondacrx
2020-12-07 10:07:26 -05:00
parent 5aa1c08ca1
commit 7e2df34250
39 changed files with 513 additions and 245 deletions
+2 -2
View File
@@ -137,7 +137,7 @@ namespace System.Collections.Generic
{
if (!_interalStorage.ContainsKey(key))
{
value = default(TValue);
value = default;
return false;
}
value = _interalStorage[key].Last();
@@ -381,7 +381,7 @@ namespace System.Collections.Generic
{
if (!_interalStorage.ContainsKey(key))
{
value = default(TValue);
value = default;
return false;
}
value = _interalStorage[key].Last();