Skip to content

Commit

Permalink
renamed property for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
waylaa committed Dec 8, 2023
1 parent 5735d29 commit ea208f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OsuCollectionDownloader/Cache/FrozenDirectoryCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ namespace OsuCollectionDownloader.Cache;

internal sealed class FrozenDirectoryCache(string path)
{
internal FrozenSet<string> Items { get; } = new HashSet<string>(Directory.EnumerateDirectories(path), StringComparer.OrdinalIgnoreCase).ToFrozenSet();
internal FrozenSet<string> Directories { get; } = new HashSet<string>(Directory.EnumerateDirectories(path), StringComparer.OrdinalIgnoreCase).ToFrozenSet();
}

0 comments on commit ea208f6

Please sign in to comment.