Skip to content

Commit

Permalink
Refactor : LigneFichierDtoExemp
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Dec 3, 2024
1 parent 3325bd2 commit cabe092
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ public TYPE_DEMANDE getTypeDemande() {
}

public Integer getNbReponses() {
if(nbReponses==null){
return 0;
}
return nbReponses;
return (nbReponses==null) ? 0 : nbReponses;
}
}

0 comments on commit cabe092

Please sign in to comment.