Skip to content

Commit

Permalink
FEAT ITEM-308-back-ajuster-le-controles-sur-le-nombres-de-colonnes-pa…
Browse files Browse the repository at this point in the history
…r-ligne-dans-un-fichier-de-correspondances :

     - modification d'un contrôle de longueur de ligne dans la méthode checkBodyLine() dans FichierEnrichiSupp.java
  • Loading branch information
EryneKL committed Oct 21, 2024
1 parent cf7bf47 commit 1bdcfeb
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import org.springframework.util.StringUtils;

import java.io.BufferedReader;
import java.io.FileInputStream;
Expand Down Expand Up @@ -86,7 +85,7 @@ private void check3Cols(String ligne) throws FileCheckingException {
private void checkBodyLine(String ligne, DemandeSupp demandeSupp) throws FileCheckingException {
try {
// contrôle de la longueur de la ligne
if (ligne.split(";").length > 3 || StringUtils.countOccurrencesOf(ligne, ";") != 3) {
if (ligne.split(";").length > 3) {
throw new FileCheckingException(Constant.ERR_FILE_ERRLINE + " \"" + ligne + "\" " + Constant.ERR_FILE_3COL_SUPP_ANY_LINE);
}
String[] tabligne = ligne.split(";");
Expand Down

0 comments on commit 1bdcfeb

Please sign in to comment.