2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-17 15:26:23 +00:00

[fenix] No issue - Suppress new warnings from detekt update

This commit is contained in:
Kainalu Hagiwara 2020-07-20 15:51:43 -07:00
parent de6145c967
commit 5a895d6125
3 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@ import org.mozilla.fenix.home.Tab
/**
* Diff callback for comparing tab lists with selected state.
*/
@Suppress("LongParameterList")
internal class TabDiffUtil(
private val old: List<Tab>,
private val new: List<Tab>,

View File

@ -128,7 +128,7 @@ interface SessionControlController {
fun handleCreateCollection()
}
@SuppressWarnings("TooManyFunctions", "LargeClass")
@SuppressWarnings("TooManyFunctions", "LargeClass", "LongParameterList")
class DefaultSessionControlController(
private val activity: HomeActivity,
private val engine: Engine,

View File

@ -47,7 +47,7 @@ interface BookmarkController {
fun handleBackPressed()
}
@SuppressWarnings("TooManyFunctions")
@SuppressWarnings("TooManyFunctions", "LongParameterList")
class DefaultBookmarkController(
private val activity: HomeActivity,
private val navController: NavController,