Browse Source

ktlintFormat

Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
sowjanyakch 8 months ago
parent
commit
d523f12462
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/src/main/java/com/nextcloud/talk/utils/ConversationUtils.kt

+ 2 - 2
app/src/main/java/com/nextcloud/talk/utils/ConversationUtils.kt

@@ -24,11 +24,11 @@ object ConversationUtils {
             Participant.ParticipantType.USER_FOLLOWING_LINK == conversation.participantType
     }
 
-    fun isOneToOneConversation(conversation: ConversationModel): Boolean  {
+    fun isOneToOneConversation(conversation: ConversationModel): Boolean {
         return ConversationEnums.ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL == conversation.type
     }
 
-    fun isGroupConversation(conversation: ConversationModel): Boolean  {
+    fun isGroupConversation(conversation: ConversationModel): Boolean {
         return ConversationEnums.ConversationType.ROOM_GROUP_CALL == conversation.type
     }