diff options
author | Robert Jaros <rjaros@finn.pl> | 2020-02-26 13:31:13 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2020-02-26 13:31:13 +0100 |
commit | 94f36f212a60654571728a1f34701d95453efc22 (patch) | |
tree | 8fdaad7f3852a951f1e8f70376d80d3eb89dbecb /src | |
parent | 99dcb8e434d7e0ccf5dada379c1b03e894e6aa82 (diff) | |
download | kvision-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.kt | 2 |
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 |