public boolean areContentsTheSame()

in BasicSample/app/src/main/java/com/example/android/persistence/ui/CommentAdapter.java [48:54]


            public boolean areContentsTheSame(@NonNull CommentEntity old,
                    @NonNull CommentEntity comment) {
                return old.getId() == comment.getId()
                        && old.getPostedAt().equals(comment.getPostedAt())
                        && old.getProductId() == comment.getProductId()
                        && TextUtils.equals(old.getText(), comment.getText());
            }