[Refactor] Use collection expression.

This commit is contained in:
2025-07-08 23:10:49 +01:00
parent 31325d573b
commit 19bb166ed3
3 changed files with 11 additions and 11 deletions

View File

@@ -25,9 +25,9 @@ public sealed class Fuse : FileSystem
public Fuse(Vfs vfs)
{
_directoryCache = new ConcurrentDictionary<long, List<DirectoryEntry>>();
_directoryCache = [];
_lastHandle = 0;
_fileStatHandleCache = new ConcurrentDictionary<long, Stat>();
_fileStatHandleCache = [];
Name = "romrepomgrfs";
_vfs = vfs;
}