From 1bdcfebc07d8beffd336381b858101735c1b1935 Mon Sep 17 00:00:00 2001 From: EryneKL <97091460+EryneKL@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:30:52 +0200 Subject: [PATCH] =?UTF-8?q?FEAT=20ITEM-308-back-ajuster-le-controles-sur-l?= =?UTF-8?q?e-nombres-de-colonnes-par-ligne-dans-un-fichier-de-correspondan?= =?UTF-8?q?ces=20:=20=20=20=20=20=20-=20modification=20d'un=20contr=C3=B4l?= =?UTF-8?q?e=20de=20longueur=20de=20ligne=20dans=20la=20m=C3=A9thode=20che?= =?UTF-8?q?ckBodyLine()=20dans=20FichierEnrichiSupp.java?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/fr/abes/item/core/components/FichierEnrichiSupp.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/main/java/fr/abes/item/core/components/FichierEnrichiSupp.java b/core/src/main/java/fr/abes/item/core/components/FichierEnrichiSupp.java index 0e409de6..6de2ecfa 100644 --- a/core/src/main/java/fr/abes/item/core/components/FichierEnrichiSupp.java +++ b/core/src/main/java/fr/abes/item/core/components/FichierEnrichiSupp.java @@ -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; @@ -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(";");