Merge develop into master #1

Merged
SemvdH merged 297 commits from develop into main 2021-01-06 22:20:51 +00:00
Showing only changes of commit 9e8e9f4cdd - Show all commits

View File

@@ -2,10 +2,12 @@ package com.a1.nextlocation.recyclerview;
import com.a1.nextlocation.data.Location;
public class LocationLoader implements Loader<Location>{
import java.util.List;
public class LocationLoader implements Loader<List<Location>>{
@Override
public Location load() {
public List<Location> load() {
return null;
}
}