From 0198305bfb762fab09758c20d1a396501abd8e9b Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Thu, 19 Mar 2020 11:51:06 +0100 Subject: [PATCH] MigrationPushRenewer: Remove ExperimentalCoroutinesApi. --- .../migration/java/org/mozilla/fenix/MigrationPushRenewer.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/migration/java/org/mozilla/fenix/MigrationPushRenewer.kt b/app/src/migration/java/org/mozilla/fenix/MigrationPushRenewer.kt index c45df6722..7cc5fc55c 100644 --- a/app/src/migration/java/org/mozilla/fenix/MigrationPushRenewer.kt +++ b/app/src/migration/java/org/mozilla/fenix/MigrationPushRenewer.kt @@ -4,7 +4,6 @@ package org.mozilla.fenix -import kotlinx.coroutines.ExperimentalCoroutinesApi import kotlinx.coroutines.flow.collect import mozilla.components.concept.push.PushProcessor import mozilla.components.lib.state.ext.flowScoped @@ -19,7 +18,6 @@ class MigrationPushRenewer( private val service: PushProcessor?, private val store: MigrationStore ) { - @UseExperimental(ExperimentalCoroutinesApi::class) fun start() { // Observe for migration completed. store.flowScoped { flow ->