fix type definition

This commit is contained in:
Phillip Thelen 2025-06-12 18:40:06 +02:00
parent 650c1049ba
commit 85b374a354

View file

@ -1,8 +1,8 @@
package com.habitrpg.common.habitica.helpers
object EmojiMap {
val emojiMap: MutableMap<Int?, String?> = HashMap()
val invertedEmojiMap: MutableMap<String?, Int?> = HashMap()
val emojiMap: MutableMap<Int, String> = HashMap()
val invertedEmojiMap: MutableMap<String, Int> = HashMap()
init {
emojiMap.put(128077, ":+1:")