fix: supprimer méthode getTypeOrganisationLibelle() dupliquée dans OrganisationDetailBean

This commit is contained in:
dahoud
2026-04-17 20:20:08 +00:00
parent cbdd5571f9
commit deb525d727

View File

@@ -315,14 +315,6 @@ public class OrganisationDetailBean implements Serializable {
return String.valueOf(mots[0].charAt(0)).toUpperCase();
}
public String getTypeOrganisationLibelle() {
if (organisation == null) return "";
return organisation.getTypeOrganisationLibelle();
}
/**
* Libellé du type d'organisation pour la vue.
*/
public String getTypeOrganisationLibelle() {
if (organisation == null) return "";
return organisation.getTypeOrganisationLibelle() != null ? organisation.getTypeOrganisationLibelle() : "";