1
0
mirror of https://github.com/TwidereProject/Twidere-Android synced 2025-02-08 15:58:40 +01:00

Java 7 migration aid

This commit is contained in:
TacoTheDank 2020-05-31 02:29:10 -04:00
parent 65e46a8ee6
commit 67b0af9cb4

View File

@ -101,7 +101,7 @@ public class ArrayAdapter<T> extends BaseAdapter implements Filterable {
* instantiating views.
*/
public ArrayAdapter(Context context, int resource) {
init(context, resource, new ArrayList<T>());
init(context, resource, new ArrayList<>());
}
/**