Project

General

Profile

« Previous | Next » 

Revision 82a57421

Added by Patrick Plitzner almost 6 years ago

fix #7430 New team members are added at the end of the member list

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/DefaultCdmBaseComparator.java
30 30
        if(o2==null){
31 31
            return 1;
32 32
        }
33
        return o1.getId()-o2.getId();
33
        int diff = o1.getId()-o2.getId();
34
        if(diff==0){
35
            diff = o1.getCreated().compareTo(o2.getCreated());
36
        }
37
        return diff;
34 38
    }
35 39

  
36 40
}

Also available in: Unified diff