Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a4c0638 authored by Cary Clark's avatar Cary Clark
Browse files

call super.finalize() from WebView

found by findbugs
http://b/issue?id=1857144
this fixes ViewDebug which otherwise will report the
incorrect number of views
parent 36093d4e
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -2514,7 +2514,11 @@ public class WebView extends AbsoluteLayout

    @Override
    protected void finalize() throws Throwable {
        try {
            destroy();
        } finally {
            super.finalize();
        }
    }

    @Override