Skip to content

Commit c64849e

Browse files
author
LoneWandererProductions
committed
smaller fix up
1 parent 9243cd0 commit c64849e

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

ExtendedSystemObjects/CategorizedDictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public IEnumerable<TK> GetKeys()
126126
_lock.EnterReadLock();
127127
try
128128
{
129-
return _data.Keys; // Create a copy for thread safety
129+
return _data.Keys.ToList(); ; ; // Create a copy for thread safety
130130
}
131131
finally
132132
{

ExtendedSystemObjects/VaultMetadata.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515

1616
namespace ExtendedSystemObjects
1717
{
18+
/// <summary>
19+
/// Meta Data for thje clas
20+
/// </summary>
1821
public sealed class VaultMetadata
1922
{
2023
/// <summary>

0 commit comments

Comments
 (0)