mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
fix type definition
This commit is contained in:
parent
650c1049ba
commit
85b374a354
1 changed files with 2 additions and 2 deletions
|
|
@ -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:")
|
||||
|
|
|
|||
Loading…
Reference in a new issue