This commit is contained in:
Austin Huang 2021-05-19 12:06:34 -04:00
parent efb5818a65
commit 3cc5040110
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ public final class NotificationsAdapter extends ListAdapter<Notification, Notifi
private static final DiffUtil.ItemCallback<Notification> DIFF_CALLBACK = new DiffUtil.ItemCallback<Notification>() {
@Override
public boolean areItemsTheSame(@NonNull final Notification oldItem, @NonNull final Notification newItem) {
return oldItem.getPk().equals(newItem.getPk());
public boolean areItemsTheSame(final Notification oldItem, final Notification newItem) {
return oldItem != null && newItem != null && oldItem.getPk().equals(newItem.getPk());
}
@Override