From ff2c5496ce98ec1623b2d0a07161f86b93906c1a Mon Sep 17 00:00:00 2001 From: Filipp Zhinkin Date: Tue, 19 Nov 2024 16:37:08 -0500 Subject: [PATCH] Postpone deprecated functions removal once again --- core/common/src/files/Paths.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/common/src/files/Paths.kt b/core/common/src/files/Paths.kt index 7f75cfb1..c23540a5 100644 --- a/core/common/src/files/Paths.kt +++ b/core/common/src/files/Paths.kt @@ -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", @@ -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",