We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d94a7b6 + c5daa17 commit 2452ad3Copy full SHA for 2452ad3
1 file changed
tests/DumpRenderTree/src/com/android/dumprendertree/TestShellActivity.java
@@ -286,23 +286,11 @@ protected void onStop() {
286
mWebView.stopLoading();
287
}
288
289
-
290
- //TODO: remove. this is temporary for bug investigation
291
- @Override
292
- public void finish() {
293
- Exception e = new Exception("finish() call stack");
294
- Log.d(LOGTAG, "finish stack trace", e);
295
- super.finish();
296
- }
297
298
@Override
299
protected void onDestroy() {
300
- //TODO: remove exception log. this is temporary for bug investigation
301
- Exception e = new Exception("onDestroy stack trace");
302
- Log.d(LOGTAG, "onDestroy stack trace", e);
+ super.onDestroy();
303
mWebView.destroy();
304
mWebView = null;
305
- super.onDestroy();
306
307
308
0 commit comments