log.warning(String.format("Assignment id '%s' is longer than 25 characters, and can't be "
+ "used as a developer tag.", assignmentId));
}
if (jsonObj.has("latitude") && jsonObj.has("longitude")) {
newEntry.setGeoCoordinates(new GeoRssWhere(jsonObj.getDouble("latitude"),
jsonObj.getDouble("longitude")));
} else if (!util.isNullOrEmpty(location)) {
newEntry.setLocation(location);
}