mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backout 50cc461ad671 (bug 725380),
This commit is contained in:
parent
0ccee060e1
commit
5762d3a3d8
@ -101,13 +101,7 @@ public class CrashReporter extends Activity
|
||||
@Override
|
||||
public void finish()
|
||||
{
|
||||
try {
|
||||
if (mProgressDialog.isShowing()) {
|
||||
mProgressDialog.dismiss();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Log.e(LOGTAG, "exception while closing progress dialog: ", e);
|
||||
}
|
||||
mProgressDialog.dismiss();
|
||||
super.finish();
|
||||
}
|
||||
|
||||
@ -236,10 +230,8 @@ public class CrashReporter extends Activity
|
||||
final CheckBox includeURLCheckbox = (CheckBox) findViewById(R.id.include_url);
|
||||
|
||||
String spec = extras.get("ServerURL");
|
||||
if (spec == null) {
|
||||
if (spec == null)
|
||||
doFinish();
|
||||
return;
|
||||
}
|
||||
|
||||
Log.i("GeckoCrashReport", "server url: " + spec);
|
||||
try {
|
||||
|
@ -241,10 +241,8 @@ public class CrashReporter extends Activity
|
||||
final CheckBox includeURLCheckbox = (CheckBox) findViewById(R.id.include_url);
|
||||
|
||||
String spec = extras.get(SERVER_URL_KEY);
|
||||
if (spec == null) {
|
||||
if (spec == null)
|
||||
doFinish();
|
||||
return;
|
||||
}
|
||||
|
||||
Log.i(LOGTAG, "server url: " + spec);
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user