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

Commit a6883689 authored by Sadrul Chowdhury's avatar Sadrul Chowdhury Committed by Android (Google) Code Review
Browse files

Merge "Avoid unnecessary binder calls during app-startup." into main

parents a73a855d 6aa0841b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -706,11 +706,11 @@ public class GraphicsEnvironment {
     * @param context
     */
    public void showAngleInUseDialogBox(Context context) {
        if (!shouldShowAngleInUseDialogBox(context)) {
        if (!mShouldUseAngle) {
            return;
        }

        if (!mShouldUseAngle) {
        if (!shouldShowAngleInUseDialogBox(context)) {
            return;
        }