This commit is contained in:
Przemek Grondek 2014-07-17 12:47:17 +02:00
parent d1cf4d4351
commit b851d9a327

View file

@ -130,9 +130,9 @@ public class RealDatabaseConnector implements DatabaseConnector {
this.database = database;
}
private List<String> getList(String urlQuerry){
private List<String> getList(String urlQuery){
try {
String response = httpRequest(urlQuerry);
String response = httpRequest(urlQuery);
if(response==null)
return null;
JSONArray jsonArray = new JSONArray(response);