From c1e53e34484d31584c58fa45c330e770d65879a4 Mon Sep 17 00:00:00 2001 From: Ugnich Anton Date: Sun, 4 Nov 2012 22:51:24 +0700 Subject: New Juick Java API --- src/com/juick/json/Place.java | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/com/juick/json/Place.java') diff --git a/src/com/juick/json/Place.java b/src/com/juick/json/Place.java index 4e3e5579..f195e7d7 100644 --- a/src/com/juick/json/Place.java +++ b/src/com/juick/json/Place.java @@ -34,9 +34,6 @@ public class Place { jplace.lat = json.getDouble("lat"); jplace.lon = json.getDouble("lon"); jplace.name = json.getString("name").replace(""", "\""); - if (json.has("description")) { - jplace.description = json.getString("description").replace(""", "\""); - } if (json.has("users")) { jplace.users = json.getInt("users"); } @@ -46,12 +43,6 @@ public class Place { if (json.has("distance")) { jplace.distance = json.getInt("distance"); } - if (json.has("tags")) { - JSONArray tags = json.getJSONArray("tags"); - for (int n = 0; n < tags.length(); n++) { - jplace.tags.add(tags.getString(n).replace(""", "\"")); - } - } return jplace; } -- cgit v1.2.3