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

Commit ded7c652 authored by Conley Owens's avatar Conley Owens Committed by Android Git Automerger
Browse files

am 893812b2: am e6e3322a: am 8fff7805: Merge "Remove duplicate \'=\' in exception message"

* commit '893812b2':
  Remove duplicate '=' in exception message
parents a1f6a09a 893812b2
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -316,9 +316,10 @@ class GlobalActions implements DialogInterface.OnDismissListener, DialogInterfac
                filteredPos++;
            }

            throw new IllegalArgumentException("position " + position + " out of "
                    + "range of showable actions, filtered count = "
                    + "= " + getCount() + ", keyguardshowing=" + mKeyguardShowing
            throw new IllegalArgumentException("position " + position
                    + " out of range of showable actions"
                    + ", filtered count=" + getCount()
                    + ", keyguardshowing=" + mKeyguardShowing
                    + ", provisioned=" + mDeviceProvisioned);
        }