aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Jaros <rjaros@finn.pl>2020-02-26 13:31:13 +0100
committerRobert Jaros <rjaros@finn.pl>2020-02-26 13:31:13 +0100
commit94f36f212a60654571728a1f34701d95453efc22 (patch)
tree8fdaad7f3852a951f1e8f70376d80d3eb89dbecb /src
parent99dcb8e434d7e0ccf5dada379c1b03e894e6aa82 (diff)
downloadkvision-94f36f212a60654571728a1f34701d95453efc22.tar.gz
kvision-94f36f212a60654571728a1f34701d95453efc22.tar.bz2
kvision-94f36f212a60654571728a1f34701d95453efc22.zip
Fix deprecation messages.
Diffstat (limited to 'src')
-rw-r--r--src/main/kotlin/pl/treksoft/kvision/types/Date.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/types/Date.kt b/src/main/kotlin/pl/treksoft/kvision/types/Date.kt
index 83d20ea9..9f601c25 100644
--- a/src/main/kotlin/pl/treksoft/kvision/types/Date.kt
+++ b/src/main/kotlin/pl/treksoft/kvision/types/Date.kt
@@ -31,7 +31,7 @@ import kotlin.js.Date
const val KV_DEFAULT_DATE_FORMAT = "YYYY-MM-DD HH:mm:ss"
-@Deprecated("Not supported in KVision 2. Use LocalDateTime or OffsetDateTime instead.", level = DeprecationLevel.ERROR)
+@Deprecated("Not supported in KVision 2+. Use LocalDateTime or OffsetDateTime instead.", level = DeprecationLevel.ERROR)
actual typealias Date = Date
actual typealias LocalDateTime = Date