int i = 1;
for (IssueCommentsEntry issueComment : comments.getEntries()) {
String content = getPlainTextContent(issueComment, false);
if (!(StringUtils.isEmpty(content))) {
TaskAttribute attribute = data.getRoot().createAttribute(
TaskAttribute.PREFIX_COMMENT + i);
TaskCommentMapper taskComment = TaskCommentMapper.createFrom(attribute);
// Comment id is something like
// http://code.google.com/feeds/issues/p/googlecode-mylyn-connector/issues/1/comments/full/1
String commentId = StringUtils.substringAfterLast(issueComment.getId(), "/");