changed loader stuff

This commit is contained in:
Sem van der Hoeven
2020-12-17 10:59:07 +01:00
parent 6a07ce77f0
commit 1d48ada0ab
4 changed files with 38 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
package com.a1.nextlocation.recyclerview;
public interface Loader {
void load();
public interface Loader<T> {
T load();
}