Skip to content

Commit 22e2f9a

Browse files
committed
Remove the ReplaceWith that don't work
1 parent f5b4f38 commit 22e2f9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/common/src/LocalDate.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ public expect class LocalDate : Comparable<LocalDate> {
213213
public val day: Int
214214

215215
/** @suppress */
216-
@Deprecated("Use the 'day' property instead", ReplaceWith("this.day"), level = DeprecationLevel.WARNING)
216+
@Deprecated("Use the 'day' property instead", level = DeprecationLevel.WARNING)
217217
public val dayOfMonth: Int
218218

219219
/**

core/common/src/LocalDateTime.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public expect class LocalDateTime : Comparable<LocalDateTime> {
283283
public val day: Int
284284

285285
/** @suppress */
286-
@Deprecated("Use the 'day' property instead", ReplaceWith("day"), level = DeprecationLevel.WARNING)
286+
@Deprecated("Use the 'day' property instead", level = DeprecationLevel.WARNING)
287287
public val dayOfMonth: Int
288288

289289
/**

0 commit comments

Comments
 (0)