Skip to content

Commit 55c37e4

Browse files
committed
Migrate to Codepoint value class
1 parent 74c5405 commit 55c37e4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • tools/idea-plugin/src/main/kotlin/io/github/composegears/valkyrie/ui/screen/webimport/standard/eva/domain

tools/idea-plugin/src/main/kotlin/io/github/composegears/valkyrie/ui/screen/webimport/standard/eva/domain/EvaUseCase.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package io.github.composegears.valkyrie.ui.screen.webimport.standard.eva.domain
22

33
import io.github.composegears.valkyrie.settings.InMemorySettings
44
import io.github.composegears.valkyrie.ui.screen.webimport.common.model.FontByteArray
5+
import io.github.composegears.valkyrie.ui.screen.webimport.standard.common.domain.Codepoint
56
import io.github.composegears.valkyrie.ui.screen.webimport.standard.common.domain.StandardIconProvider
67
import io.github.composegears.valkyrie.ui.screen.webimport.standard.common.domain.inferCategoryFromTags
78
import io.github.composegears.valkyrie.ui.screen.webimport.standard.common.domain.toDisplayName
@@ -34,7 +35,7 @@ class EvaUseCase(
3435
StandardIcon(
3536
name = name,
3637
displayName = displayName,
37-
codepoint = codepoint,
38+
codepoint = Codepoint(codepoint),
3839
tags = emptyList(),
3940
category = inferCategoryFromTags(displayName, emptyList()),
4041
style = name.toEvaStyle(),

0 commit comments

Comments
 (0)