Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed version in kdoc
  • Loading branch information
fzhinkin committed Sep 13, 2023
commit b75f14cd7c75fb86a943f18081967e6a78b8c45b
4 changes: 2 additions & 2 deletions core/common/src/files/Paths.kt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public fun Path(base: Path, vararg parts: String): Path {
/**
* Returns [RawSource] for the given file or throws if path is not a file or does not exist
*
* Use of this method is deprecated with warning since kotlinx-io 0.2.3. The method will be removed in 0.3.0.
* Use of this method is deprecated with warning since kotlinx-io 0.2.2. The method will be removed in 0.3.0.
*/
@Deprecated(
message = "Use FileSystem.source instead",
Expand All @@ -116,7 +116,7 @@ public fun Path.source(): Source = SystemFileSystem.source(this).buffered()
* Returns [RawSink] for the given path, creates file if it doesn't exist, throws if it's a directory,
* overwrites contents.
*
* Use of this method is deprecated with warning since kotlinx-io 0.2.3. The method will be removed in 0.3.0.
* Use of this method is deprecated with warning since kotlinx-io 0.2.2. The method will be removed in 0.3.0.
*/
@Deprecated(
message = "Use FileSystem.sink instead",
Expand Down