[Android] Fix the name of the parameters in some unused interface methods.

There are some interface methods that are simply stubbed for the time being. It would be better to give the parameters better names despite not being used.
This commit is contained in:
Lioncash 2013-09-15 14:34:30 -04:00
parent b4c082f1b3
commit 5a0f0b908e
2 changed files with 3 additions and 3 deletions

View File

@ -51,12 +51,12 @@ public final class NativeGLSurfaceView extends SurfaceView
}
}
public void surfaceChanged(SurfaceHolder arg0, int arg1, int arg2, int arg3)
public void surfaceChanged(SurfaceHolder holder, int format, int width, int height)
{
// TODO Auto-generated method stub
}
public void surfaceDestroyed(SurfaceHolder arg0)
public void surfaceDestroyed(SurfaceHolder holder)
{
// TODO Auto-generated method stub
}

View File

@ -76,7 +76,7 @@ public final class PrefsActivity extends Activity implements ActionBar.TabListen
actionBar.addTab(actionBar.newTab().setText(R.string.video_settings).setTabListener(this));
}
public void onTabReselected(Tab arg0, FragmentTransaction arg1)
public void onTabReselected(Tab tab, FragmentTransaction ft)
{
// Do nothing.
}