According to <https://kotlinlang.org/api/latest/jv...
# announcements
t
According to https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/synchronized.html
synchronized
for
common
but not for
js
and
jvm
- which in fact are the both platforms i target. is there a way to use it in
common
without the deprecation warnuing?
obviously by creating an
actual synchronized
- but is there a more elegant way?
e
No.
actual synchronized
is what you need
t
ok thanks!