167168169170171172173174175176177
} private String getAuthorName() { String name = "Myself"; if (!isNewCommentFromMyself()) { AccountInfo author = ((CommentInfo) fileComment).author; if (author != null) { name = author.name; } } return name;