mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-11-16 22:05:20 +00:00
Remove unused public methods
This commit is contained in:
parent
acdc8da64f
commit
6c959a030c
@ -479,7 +479,7 @@ public class Apple2Activity extends Activity {
|
||||
mMenuStack.add(apple2MenuView);
|
||||
View menuView = apple2MenuView.getView();
|
||||
nativeEmulationPause();
|
||||
addContentView(menuView, new FrameLayout.LayoutParams(getWidth(), getHeight()));
|
||||
addContentView(menuView, new FrameLayout.LayoutParams(mWidth, mHeight));
|
||||
}
|
||||
|
||||
public synchronized Apple2MenuView popApple2View() {
|
||||
@ -574,14 +574,6 @@ public class Apple2Activity extends Activity {
|
||||
return mView;
|
||||
}
|
||||
|
||||
public int getWidth() {
|
||||
return mWidth;
|
||||
}
|
||||
|
||||
public int getHeight() {
|
||||
return mHeight;
|
||||
}
|
||||
|
||||
public void maybeQuitApp() {
|
||||
nativeEmulationPause();
|
||||
AlertDialog quitDialog = new AlertDialog.Builder(this).setIcon(R.drawable.ic_launcher).setCancelable(true).setTitle(R.string.quit_really).setMessage(R.string.quit_warning).setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
|
||||
|
Loading…
Reference in New Issue
Block a user