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

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

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

* commit 'e6e3322a':
  Remove duplicate '=' in exception message
parents 1d104476 e6e3322a
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);
        }