(PrivateChat conversation)
| 85 | } |
| 86 | |
| 87 | public void addConversation(PrivateChat conversation) { |
| 88 | User otherUser = conversation.getOtherParticipant(this); |
| 89 | privateChats.put(otherUser.getId(), conversation); |
| 90 | } |
| 91 | |
| 92 | public void addConversation(GroupChat conversation) { |
| 93 | groupChats.add(conversation); |
nothing calls this directly
no test coverage detected