Skip to content

Commit

Permalink
FIX : Correction condition dans vérification fichier
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Oct 17, 2024
1 parent fe80597 commit c3eabe5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private void check3Cols(String ligne) throws FileCheckingException {
private void checkBodyLine(String ligne, DemandeSupp demandeSupp) throws FileCheckingException {
try {
String[] tabligne = ligne.split(";");
if (demandeSupp.getTypeDemande().equals(TYPE_SUPPRESSION.EPN) && tabligne[0] != null) {
if (demandeSupp.getTypeSuppression().equals(TYPE_SUPPRESSION.EPN) && tabligne[0] != null) {
checkPpn(tabligne[0], ligneCourante);
}
checkRcr(tabligne[1], demandeSupp.getRcr(), ligneCourante);
Expand Down

0 comments on commit c3eabe5

Please sign in to comment.