Bug 701002 part 3 - JavaStackTrace: remove unused showErrorDialog() method. r=dougt

This commit is contained in:
Chris Peterson 2012-01-18 13:56:56 -08:00
parent 46474f8a44
commit fb58dae392

View File

@ -197,22 +197,6 @@ abstract public class GeckoApp
}
}
void showErrorDialog(String message)
{
new AlertDialog.Builder(this)
.setMessage(message)
.setCancelable(false)
.setPositiveButton(R.string.exit_label,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int id)
{
GeckoApp.this.finish();
System.exit(0);
}
}).show();
}
public static final String PLUGIN_ACTION = "android.webkit.PLUGIN";
/**