For #21776 - Remove reductant SAM constructor

This commit is contained in:
Gabriel Luong 2021-10-07 13:21:51 -04:00 committed by mergify[bot]
parent ed48dc934a
commit 1039a92281
2 changed files with 3 additions and 4 deletions

View File

@ -6,7 +6,6 @@ package org.mozilla.fenix.home.mozonline
import android.app.Activity
import android.content.Context
import android.content.DialogInterface
import android.text.SpannableString
import android.text.Spanned
import android.text.method.LinkMovementMethod
@ -46,13 +45,13 @@ fun showPrivacyPopWindow(context: Context, activity: Activity) {
val builder = AlertDialog.Builder(activity)
.setPositiveButton(
context.getString(R.string.privacy_notice_positive_button),
DialogInterface.OnClickListener { _, _ ->
{ _, _ ->
context.settings().shouldShowPrivacyPopWindow = false
}
)
.setNeutralButton(
context.getString(R.string.privacy_notice_neutral_button),
DialogInterface.OnClickListener { _, _ -> exitProcess(0) }
{ _, _ -> exitProcess(0) }
)
.setTitle(context.getString(R.string.privacy_notice_title))
.setMessage(messageSpannable)

View File

@ -69,7 +69,7 @@ class SitePermissionsExceptionsFragment :
liveData.observe(
viewLifecycleOwner,
Observer<PagedList<SitePermissions>> {
{
if (it.isEmpty()) {
showEmptyListMessage()
} else {