changed loader stuff
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user