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

Commit 71dec8d0 authored by You Kim's avatar You Kim
Browse files

Fix typo in RankingHelper.

Since i is index, removeAt is correct.

Change-Id: I5425ee1670ea1c4aa6da3ce5bdbdaa953e24f8fb
parent f39d0b01
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -201,7 +201,7 @@ public class RankingHelper implements RankingConfig {
            final Record r = mRecords.valueAt(i);
            if (r.priority == DEFAULT_PRIORITY && r.peekable == DEFAULT_PEEKABLE
                    && r.visibility == DEFAULT_VISIBILITY) {
                mRecords.remove(i);
                mRecords.removeAt(i);
            }
        }
    }