removeComment method
Removes the comment from the cell at index (no-op if there is none).
Implementation
void removeComment(CellIndex index) {
if (_comments.remove(getCellId(index.columnIndex, index.rowIndex)) !=
null) {
_commentsChanged = true;
}
}