https://kotlinlang.org logo
#feed
Title
e

evanchooly

04/23/2019, 5:43 PM
you have
val a = map.get("A") :? throw RuntimeException("Cannot happen")
instead of
val a = map.get("A") ?: throw RuntimeException("Cannot happen")
in a few places.
n

nfrankel

04/23/2019, 6:00 PM
thanks 😞
e

evanchooly

04/23/2019, 6:01 PM
it happens. the rest is great. 😉
n

nfrankel

04/23/2019, 6:36 PM
thanks
fixed, thanks again for your feedback
👍🏻 1