diff --git a/pom.xml b/pom.xml
index 68d2132e3bcc3c7754dc0d14e8bb3babd32388c2..736261ee34b46983d002e1e7fad7abe68a329182 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
dhu
personnes.ui
- 2.0.0-SNAPSHOT
+ 3.0.0-SNAPSHOT
war
personnes.ui
diff --git a/src/main/java/personne/routing/PersonneUtils.java b/src/main/java/personne/routing/PersonneUtils.java
index 8195d7528dbee3a8d90e11d8b1a25ad3c33f79db..1c79b1f11c345160079c9a788796c096767541bf 100644
--- a/src/main/java/personne/routing/PersonneUtils.java
+++ b/src/main/java/personne/routing/PersonneUtils.java
@@ -37,12 +37,10 @@ public final class PersonneUtils {
}
String nom = request.getParameter(JSP_ATTRIBUT_NOM);
- String prenom = request.getParameter(JSP_ATTRIBUT_PRENOM);
return PersonneBase.builder()
.uuid(uuid)
.nom(nom)
- .prenom(prenom)
.build();
}
}
diff --git a/src/main/webapp/WEB-INF/personnes/detail.jsp b/src/main/webapp/WEB-INF/personnes/detail.jsp
index e81fe449fbea40052333000490e4233fa45aa1a9..4757293ac50e2e8da683c3a9724cfac24a29197f 100644
--- a/src/main/webapp/WEB-INF/personnes/detail.jsp
+++ b/src/main/webapp/WEB-INF/personnes/detail.jsp
@@ -71,17 +71,6 @@
placeholder="nom" required=""
title="saisir le nom de la personne!"/>
-
-
- readonly=""
-
- placeholder="prénom"
- title="saisir le prénom de la personne!"/>