feat: Add option to clear home screen in settings (#6125)
Signed-off-by: abhixv <abhi.sharma1@hotmail.com>
This commit is contained in:
committed by
Pun Butrach
parent
9898749619
commit
5f3a03f4fb
@@ -19,8 +19,6 @@ package com.android.launcher3.util;
|
||||
import android.util.SparseArray;
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.stream.Stream;
|
||||
import java.util.stream.StreamSupport;
|
||||
|
||||
/**
|
||||
* Extension of {@link SparseArray} with some utility methods.
|
||||
@@ -45,10 +43,6 @@ public class IntSparseArrayMap<E> extends SparseArray<E> implements Iterable<E>
|
||||
return new ValueIterator();
|
||||
}
|
||||
|
||||
public Stream<E> stream() {
|
||||
return StreamSupport.stream(spliterator(), false);
|
||||
}
|
||||
|
||||
@Thunk class ValueIterator implements Iterator<E> {
|
||||
|
||||
private int mNextIndex = 0;
|
||||
|
||||
Reference in New Issue
Block a user