Skip to content

Commit

Permalink
fix(android): mark context as final (#723)
Browse files Browse the repository at this point in the history
Co-authored-by: Saad Mehmood <saad.mehmood@aquila360.com>
  • Loading branch information
iamsaadMehmood and warriorex committed Feb 12, 2023
1 parent e034cd9 commit 490dead
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -62,7 +62,7 @@ public static int getDefaultDialogButtonTextColor(@NonNull Context activity) {
}

@NonNull
public static DialogInterface.OnShowListener setButtonTextColor(@NonNull Context activityContext, final AlertDialog dialog, final Bundle args, final boolean needsColorOverride) {
public static DialogInterface.OnShowListener setButtonTextColor(@NonNull final Context activityContext, final AlertDialog dialog, final Bundle args, final boolean needsColorOverride) {
return new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialogInterface) {
Expand Down

0 comments on commit 490dead

Please sign in to comment.