We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks a lot for your fix of #3329
However, I found that the current implementation in v3.10.0 of the now deprecated Files.walk() ignores some of its parameters.
def walk(start: Path, maxDepth: Int, followLinks: Boolean): Stream[F, Path] = walk(start, WalkOptions.Default)
should be implemented like this:
walk(start, WalkOptions.Default.withMaxDepth(maxDepth).withFollowLinks(followLinks))
The text was updated successfully, but these errors were encountered:
Ouch, thanks for reporting. Want to open a PR?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Thanks a lot for your fix of #3329
However, I found that the current implementation in v3.10.0 of the now deprecated Files.walk() ignores some of its parameters.
should be implemented like this:
The text was updated successfully, but these errors were encountered: