// http://code.google.com/feeds/issues/p/googlecode-mylyn-connector/issues/1/comments/full/1
String commentId = StringUtils.substringAfterLast(issueComment.getId(), "/");
taskComment.setCommentId(commentId);
List<Person> authors = issueComment.getAuthors();
if (authors.size() == 1) {
IRepositoryPerson person = getPerson(data, authors.get(0));
taskComment.setAuthor(person);
}
taskComment.setNumber(i);
taskComment.setText(content);
taskComment.setCreationDate(new Date(issueComment.getPublished().getValue()));