Skip to content

Commit 15169a6

Browse files
authored
minor code style update
1 parent 0ead92b commit 15169a6

File tree

1 file changed

+1
-3
lines changed
  • app/src/main/kotlin/com/simplemobiletools/keyboard/helpers

1 file changed

+1
-3
lines changed

app/src/main/kotlin/com/simplemobiletools/keyboard/helpers/EmojiHelper.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ fun parseRawEmojiSpecsFile(context: Context, path: String): MutableList<String>
6363
return emojis
6464
}
6565

66-
6766
fun parseRawJsonSpecsFile(context: Context, path: String): HashMap<String, String> {
6867
if (cachedVNTelexData.isNotEmpty()) {
6968
return cachedVNTelexData
@@ -80,8 +79,7 @@ fun parseRawJsonSpecsFile(context: Context, path: String): HashMap<String, Strin
8079
val value = rulesObj.getString(key)
8180
cachedVNTelexData[key] = value
8281
}
83-
} catch (ex: Exception) {
84-
ex.printStackTrace()
82+
} catch (ignored: Exception) {
8583
return HashMap()
8684
}
8785
return cachedVNTelexData

0 commit comments

Comments
 (0)