Skip to content

Commit

Permalink
Postpone deprecated functions removal once again
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhinkin committed Nov 19, 2024
1 parent a47199e commit ff2c549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/common/src/files/Paths.kt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,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.3.0. The method will be removed in 0.6.0.
* Use of this method is deprecated with warning since kotlinx-io 0.3.0. The method will be removed in 0.7.0.
*/
@Deprecated(
message = "Use FileSystem.source instead",
Expand All @@ -117,7 +117,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.3.0. The method will be removed in 0.6.0.
* Use of this method is deprecated with warning since kotlinx-io 0.3.0. The method will be removed in 0.7.0.
*/
@Deprecated(
message = "Use FileSystem.sink instead",
Expand Down

0 comments on commit ff2c549

Please sign in to comment.