Skip to content

Commit

Permalink
Maj sample
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin.buntrock committed Oct 1, 2024
1 parent 65e02f9 commit 10ddd11
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ public String getLibelle() {
* @return value of {@link topmodel.jpa.sample.demo.entities.securite.profil.Profil#droits droits}.
*/
public List<Droit> getDroits() {
if(this.droits == null)
if(this.droits == null) {
this.droits = new ArrayList<>();
}
return this.droits;
}

Expand Down

0 comments on commit 10ddd11

Please sign in to comment.