addressbook icon indicating copy to clipboard operation
addressbook copied to clipboard

Possible NPE in ContactService

Open s1ac2x1 opened this issue 9 years ago • 0 comments

The following comparator may throw NPE in cases when Contact's ID hasn't been set:

    Collections.sort(arrayList, new Comparator<Contact>() {
        @Override
        public int compare(Contact o1, Contact o2) {
            return (int) (o2.getId() - o1.getId());
        }
    });

s1ac2x1 avatar Jul 07 '15 13:07 s1ac2x1