comments = new PagableListImpl<Comment>(0);
}
type = getRawString("type", json);
if (!json.isNull("coordinates")) {
JSONObject coordinatesJSONObject = json.getJSONObject("coordinates");
coordinates = new GeoLocation(coordinatesJSONObject.getDouble("latitude"),
coordinatesJSONObject.getDouble("longitude"));
}
} catch (JSONException jsone) {
throw new FacebookException(jsone.getMessage(), jsone);
}