File tree Expand file tree Collapse file tree
presentation/src/main/java/com/threegap/bitnagil/presentation/emotion/model Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments