Merge remote-tracking branch 'origin/GP-0_dev747368_fix_filesystem_uniquenum_generation'

This commit is contained in:
Ryan Kurtz 2024-05-29 13:24:08 -04:00
commit 55d6e98686

View File

@ -72,6 +72,7 @@ public class FileSystemIndexHelper<METADATATYPE> {
public FileSystemIndexHelper(GFileSystem fs, FSRLRoot fsFSRL) {
GFile rootGFile = GFileImpl.fromFSRL(fs, null, fsFSRL.withPath("/"), true, -1);
rootDir = new FileData<>(rootGFile, null, -1);
fileToEntryMap.put(rootDir.file, rootDir);
directoryToListing.put(rootDir.file, new HashMap<>());
}