Skip to content
Snippets Groups Projects

Issue thirty

Merged John Watkins requested to merge issueThirty into develop
1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
@@ -113,8 +113,12 @@ public class ShopSearch {
formattedShops.add(data);
}
Map<String,Object> returnMap = new HashMap<>();
returnMap.put("shops",formattedShops);
returnMap.put("hasNextPage", hasNextPage);
Gson gson = new Gson();
String json = gson.toJson(formattedShops);
String json = gson.toJson(returnMap);
return json;
Loading