}
private JSONObject commentToJSON(Comment comment) throws JSONException{
final JSONObject result = new JSONObject();
User user = comment.getUser();
result.put(COMMENT_NAME, user.getName());
String mailAddy = user.getEmail();
try {
mailAddy = mailAddy.substring(0, 3) + "..." + mailAddy.substring(mailAddy.indexOf('@'));
} catch (Exception ex) {
mailAddy = "---";
}