Skip to content

Commit ff2c549

Browse files
committed
Postpone deprecated functions removal once again
1 parent a47199e commit ff2c549

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/common/src/files/Paths.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public fun Path(base: Path, vararg parts: String): Path {
100100
/**
101101
* Returns [RawSource] for the given file or throws if path is not a file or does not exist
102102
*
103-
* Use of this method is deprecated with warning since kotlinx-io 0.3.0. The method will be removed in 0.6.0.
103+
* Use of this method is deprecated with warning since kotlinx-io 0.3.0. The method will be removed in 0.7.0.
104104
*/
105105
@Deprecated(
106106
message = "Use FileSystem.source instead",
@@ -117,7 +117,7 @@ public fun Path.source(): Source = SystemFileSystem.source(this).buffered()
117117
* Returns [RawSink] for the given path, creates file if it doesn't exist, throws if it's a directory,
118118
* overwrites contents.
119119
*
120-
* Use of this method is deprecated with warning since kotlinx-io 0.3.0. The method will be removed in 0.6.0.
120+
* Use of this method is deprecated with warning since kotlinx-io 0.3.0. The method will be removed in 0.7.0.
121121
*/
122122
@Deprecated(
123123
message = "Use FileSystem.sink instead",

0 commit comments

Comments
 (0)