This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository wao. See http://git.codelutin.com/wao.git commit ea2924827b4630f3a2f03e793fa92c3401d96d00 Author: Brendan Le Ny <bleny@codelutin.com> Date: Wed Feb 18 15:02:07 2015 +0100 On tri les observateurs dans le formulaire de contact selon le nom puis le prénom en ignorant la casse (testable-client #6684) --- .../src/main/java/fr/ifremer/wao/services/service/ContactsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wao-services/src/main/java/fr/ifremer/wao/services/service/ContactsService.java b/wao-services/src/main/java/fr/ifremer/wao/services/service/ContactsService.java index 17ec820..80ffefb 100644 --- a/wao-services/src/main/java/fr/ifremer/wao/services/service/ContactsService.java +++ b/wao-services/src/main/java/fr/ifremer/wao/services/service/ContactsService.java @@ -1245,7 +1245,7 @@ public class ContactsService extends WaoServiceSupport { List<WaoUser> waoUsers = query.findAll(); - SortedSet<WaoUser> sortedWaoUsers = Sets.newTreeSet(WaoUsers.fullNameComparator()); + SortedSet<WaoUser> sortedWaoUsers = Sets.newTreeSet(WaoUsers.lastFirstNameComparator()); sortedWaoUsers.addAll(waoUsers); return sortedWaoUsers; -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.