We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b4e22c commit c9b1863Copy full SHA for c9b1863
common/src/main/kotlin/com/lambda/graphics/renderer/gui/font/FontRenderer.kt
@@ -23,7 +23,7 @@ class FontRenderer(
23
* @param text The text to parse.
24
* @return A list of triples containing the emoji text, start index, and end index.
25
*/
26
- private fun parseEmojis(text: String): List<
+ fun parseEmojis(text: String): List<
27
Triple<CharInfo, Int, Int>> {
28
val result = mutableListOf<Triple<CharInfo, Int, Int>>()
29
val matches = emojiRegex.findAll(text)
0 commit comments