branch develop updated (dfd5d32 -> ea29248)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository wao. See http://git.codelutin.com/wao.git from dfd5d32 Erreur de frappe dans le choix des paramètres à mesurer (testable-client #6681) new ea29248 On tri les observateurs dans le formulaire de contact selon le nom puis le prénom en ignorant la casse (testable-client #6684) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: 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) Summary of changes: .../src/main/java/fr/ifremer/wao/services/service/ContactsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
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>.
participants (1)
-
codelutin.com scm