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

Commit 7648fa6b authored by Victor Chang's avatar Victor Chang
Browse files

Make WindowList.addFirst() public

addFirst() will become a public method in ArrayList. The overriding
method needs to public as well.

Bug: 320460092
Test: m droid
Change-Id: I6960b2eca186214e946dadece22e68ca36f31bff
parent c40bde3f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ import java.util.ArrayList;
 */
class WindowList<E> extends ArrayList<E> {

    void addFirst(E e) {
    public void addFirst(E e) {
        add(0, e);
    }