Skip to content

Commit

Permalink
[Android] Add missing final to surface callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Triang3l committed Jul 17, 2022
1 parent 2566382 commit 421c9a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void onLayoutChange(
}

@Override
public boolean onGenericMotion(View v, MotionEvent event) {
public boolean onGenericMotion(final View view, final MotionEvent event) {
if (mAppContext == 0) {
return false;
}
Expand All @@ -149,7 +149,7 @@ public boolean onGenericMotion(View v, MotionEvent event) {

@SuppressLint("ClickableViewAccessibility")
@Override
public boolean onTouch(View v, MotionEvent event) {
public boolean onTouch(final View view, final MotionEvent event) {
if (mAppContext == 0) {
return false;
}
Expand Down

0 comments on commit 421c9a8

Please sign in to comment.