mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-20 22:13:40 +00:00
[Android] Add missing final to surface callbacks
This commit is contained in:
parent
25663827ba
commit
421c9a80c5
1 changed files with 2 additions and 2 deletions
|
|
@ -140,7 +140,7 @@ public abstract class WindowedAppActivity extends Activity {
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean onGenericMotion(View v, MotionEvent event) {
|
||||
public boolean onGenericMotion(final View view, final MotionEvent event) {
|
||||
if (mAppContext == 0) {
|
||||
return false;
|
||||
}
|
||||
|
|
@ -149,7 +149,7 @@ public abstract class WindowedAppActivity extends Activity {
|
|||
|
||||
@SuppressLint("ClickableViewAccessibility")
|
||||
@Override
|
||||
public boolean onTouch(View v, MotionEvent event) {
|
||||
public boolean onTouch(final View view, final MotionEvent event) {
|
||||
if (mAppContext == 0) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue