We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdcb952 commit 30e09a7Copy full SHA for 30e09a7
io/native/src/main/scala/fs2/io/file/AsyncFilesPlatform.scala
@@ -24,15 +24,15 @@ package io
24
package file
25
26
private[file] trait AsyncFilesPlatform[F[_]] { self: Files.UnsealedFiles[F] =>
27
- override def walk(
+ override def walkWithAttributes(
28
start: Path,
29
options: WalkOptions
30
- ): Stream[F, Path] =
+ ): Stream[F, PathInfo] =
31
// Disable eager walks until https://github.com/scala-native/scala-native/issues/3744
32
walkJustInTime(start, options)
33
34
protected def walkJustInTime(
35
36
37
- ): Stream[F, Path]
+ ): Stream[F, PathInfo]
38
}
0 commit comments