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

Commit af286505 authored by You Kim's avatar You Kim Committed by Gerrit Code Review
Browse files

Fix typo in RankingHelper.

Since i is index, removeAt is correct.

Ticket: RM-232
Change-Id: I5425ee1670ea1c4aa6da3ce5bdbdaa953e24f8fb
parent befed051
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ public class RankingHelper implements RankingConfig {
            if (r.priority == DEFAULT_PRIORITY && r.peekable == DEFAULT_PEEKABLE
                    && r.visibility == DEFAULT_VISIBILITY
                    && r.keyguard == Notification.SHOW_ALL_NOTI_ON_KEYGUARD) {
                mRecords.remove(i);
                mRecords.removeAt(i);
            }
        }
    }