Skip to content

Commit

Permalink
[Android] Fix the name of the parameters in some unused interface met…
Browse files Browse the repository at this point in the history
…hods.

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.
  • Loading branch information
lioncash committed Sep 15, 2013
1 parent b4c082f commit 5a0f0b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -51,12 +51,12 @@ public void surfaceCreated(SurfaceHolder holder)
}
}

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
}
Expand Down
Expand Up @@ -76,7 +76,7 @@ public void onPageSelected(int position)
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.
}
Expand Down

0 comments on commit 5a0f0b9

Please sign in to comment.