override fun areItemsTheSame(oldItemPosition: Int, newItemPosition: Int): Boolean {
                    val old = mCommentList!![oldItemPosition]
                    val comment = comments?.get(newItemPosition)
                    return if (old != null && comment != null) {
                        old.id == comment.id