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

Commit ed92e993 authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer Committed by Steve Kondik
Browse files

Remove duplicate '=' in exception message

Remove duplicate '=' in IllegalArgumentException of MyAdapter::getItem()

Change-Id: I151a1432a9f54c8d42bae295f3967b0be2223026
parent 4ebd435b
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -544,9 +544,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);
        }