Skip to content

Commit 6aa82ac

Browse files
committed
FIX: EmotionUiModel내 일부 메서드명 수정
1 parent 15c5ba3 commit 6aa82ac

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • presentation/src/main/java/com/threegap/bitnagil/presentation/emotion/model

presentation/src/main/java/com/threegap/bitnagil/presentation/emotion/model/EmotionUiModel.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ data class EmotionUiModel(
2424
offlineBackupImageResourceId = getOfflineBackupImageResourceId(emotion.emotionType),
2525
),
2626
message = getMessage(emotion.emotionType),
27-
symbolBackgroundColor = getSymbolBackgroundColorString(emotion.emotionType),
28-
symbolColor = getSymbolColorString(emotion.emotionType),
27+
symbolBackgroundColor = getSymbolBackgroundColor(emotion.emotionType),
28+
symbolColor = getSymbolColor(emotion.emotionType),
2929
)
3030

3131
private fun getOfflineBackupImageResourceId(emotionType: String): Int? {
@@ -52,7 +52,7 @@ data class EmotionUiModel(
5252
}
5353
}
5454

55-
private fun getSymbolBackgroundColorString(emotionType: String): Long {
55+
private fun getSymbolBackgroundColor(emotionType: String): Long {
5656
return when (emotionType) {
5757
"CALM" -> 0xFFEFECFF
5858
"VITALITY" -> 0xFFE9FAD0
@@ -64,7 +64,7 @@ data class EmotionUiModel(
6464
}
6565
}
6666

67-
private fun getSymbolColorString(emotionType: String): Long {
67+
private fun getSymbolColor(emotionType: String): Long {
6868
return when (emotionType) {
6969
"CALM" -> 0xFF692BD0
7070
"VITALITY" -> 0xFF609F00

0 commit comments

Comments
 (0)