Android: Removed empty onDraw() override method from SDLActivity.

It was redundant because SDLActivity already inherits an empty method from the
base class SurfaceView (which does not implement it but inherits it from View).
Visibility of onDraw() in SDLActivity is now protected again instead of public.
This commit is contained in:
Philipp Wiesemann 2015-09-17 22:14:37 +02:00
parent 8f2af6c925
commit e3768b7fc3

View file

@ -1136,11 +1136,6 @@ class SDLSurface extends SurfaceView implements SurfaceHolder.Callback,
}
}
// unused
@Override
public void onDraw(Canvas canvas) {}
// Key events
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {