Skip to content

Commit 14f6403

Browse files
committed
ExperimentalCoroutinesApi annotation is not required any more
1 parent 7c0fa84 commit 14f6403

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/kotlin/com/example/kotlin/chat/service/PersistentMessageService.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import com.example.kotlin.chat.asDomainObject
44
import com.example.kotlin.chat.asRendered
55
import com.example.kotlin.chat.mapToViewModel
66
import com.example.kotlin.chat.repository.MessageRepository
7-
import kotlinx.coroutines.ExperimentalCoroutinesApi
87
import kotlinx.coroutines.flow.Flow
98
import kotlinx.coroutines.flow.MutableSharedFlow
109
import kotlinx.coroutines.flow.map
@@ -13,7 +12,6 @@ import kotlinx.coroutines.flow.collect
1312
import org.springframework.stereotype.Service
1413

1514
@Service
16-
@ExperimentalCoroutinesApi
1715
class PersistentMessageService(val messageRepository: MessageRepository) : MessageService {
1816

1917
val sender: MutableSharedFlow<MessageVM> = MutableSharedFlow()

0 commit comments

Comments
 (0)