From 86a1f260042dc48920d900188cc0f593d37393ba Mon Sep 17 00:00:00 2001 From: DjBushido Date: Sat, 5 Apr 2014 17:05:31 -0400 Subject: [PATCH] Accidentally forgot to remove a method arg --- UNCCScavenger/src/edu/uncc/scavenger/rest/LocationClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UNCCScavenger/src/edu/uncc/scavenger/rest/LocationClient.java b/UNCCScavenger/src/edu/uncc/scavenger/rest/LocationClient.java index 34180e7..4804a1f 100644 --- a/UNCCScavenger/src/edu/uncc/scavenger/rest/LocationClient.java +++ b/UNCCScavenger/src/edu/uncc/scavenger/rest/LocationClient.java @@ -31,7 +31,7 @@ public class LocationClient { return client.getResult(keys); } - public List getLocations(Context ctx) { + public List getLocations() { LocationService client = getAdapter(); return client.listLocations(); }