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

Commit 6a85508e authored by Gilles Debunne's avatar Gilles Debunne
Browse files

Wrong null check in TextView

Bug 4087576

Change-Id: I907cb08b24b23715f3900bc076de2cc856650981
parent b46ecb35
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9203,7 +9203,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener

        @Override
        public void onDetached() {
            if (mHandle == null) mHandle.onDetached();
            if (mHandle != null) mHandle.onDetached();
        }
    }