From 9e8e9f4cdd6fa8d33054c3db7f9af4ac68e0202d Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Thu, 17 Dec 2020 11:00:14 +0100 Subject: [PATCH] changed loader stuff --- .../com/a1/nextlocation/recyclerview/LocationLoader.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/a1/nextlocation/recyclerview/LocationLoader.java b/app/src/main/java/com/a1/nextlocation/recyclerview/LocationLoader.java index a61845b..3672973 100644 --- a/app/src/main/java/com/a1/nextlocation/recyclerview/LocationLoader.java +++ b/app/src/main/java/com/a1/nextlocation/recyclerview/LocationLoader.java @@ -2,10 +2,12 @@ package com.a1.nextlocation.recyclerview; import com.a1.nextlocation.data.Location; -public class LocationLoader implements Loader{ +import java.util.List; + +public class LocationLoader implements Loader>{ @Override - public Location load() { + public List load() { return null; } }