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 36c1b90a89025996229d2b25d644f4ebe6b88c8c Author: Brendan Le Ny <bleny@codelutin.com> Date: Mon Dec 22 17:26:58 2014 +0100 Dans la liste déroulante, afficher la société avant le labo pour grouper --- .../src/main/java/fr/ifremer/wao/entity/LaboratoryImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wao-persistence/src/main/java/fr/ifremer/wao/entity/LaboratoryImpl.java b/wao-persistence/src/main/java/fr/ifremer/wao/entity/LaboratoryImpl.java index 5afe788..eada015 100644 --- a/wao-persistence/src/main/java/fr/ifremer/wao/entity/LaboratoryImpl.java +++ b/wao-persistence/src/main/java/fr/ifremer/wao/entity/LaboratoryImpl.java @@ -3,10 +3,10 @@ package fr.ifremer.wao.entity; public class LaboratoryImpl extends LaboratoryAbstract { - private static final long serialVersionUID = 3472901365946410034L; + private static final long serialVersionUID = 2L; @Override public String getFullName() { - return String.format("%s (%s)", getName(), getCompany().getName()); + return String.format("%s / %s", getCompany().getName(), getName()); } } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.