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

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

am ded7c652: am 893812b2: am e6e3322a: am 8fff7805: Merge "Remove duplicate...

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

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


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