[eel] IJPL-176779 Fix endless recursion in EelFileSystemPosixApi.listDirectoryWithAttrs

It was just calling itself.

GitOrigin-RevId: df26f8230b1244d20e980dce9df2c0661e768c5e
This commit is contained in:
Konstantin Hudyakov
2025-09-17 16:41:35 +03:00
committed by intellij-monorepo-bot
parent d270a5f5ab
commit da424e161f

View File

@@ -788,7 +788,7 @@ interface EelFileSystemPosixApi : EelFileSystemApi {
override suspend fun listDirectoryWithAttrs(@GeneratedBuilder args: EelFileSystemApi.ListDirectoryWithAttrsArgs): EelResult<
Collection<Pair<String, EelPosixFileInfo>>,
EelFileSystemApi.ListDirectoryError> =
listDirectoryWithAttrs(args)
listDirectoryWithAttrs(path = args.path, symlinkPolicy = args.symlinkPolicy)
@Deprecated("Use the method with the builder")
@CheckReturnValue