From acfc0ca3c4121440c134b03a99583c58276c010a Mon Sep 17 00:00:00 2001 From: pablo rodriguez <58742538+1-pablo-rodriguez@users.noreply.github.com> Date: Thu, 9 May 2024 14:31:23 +0200 Subject: [PATCH] MAJ V4.5.0 --- src/action/actNewFichierAnalyse.java | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/action/actNewFichierAnalyse.java b/src/action/actNewFichierAnalyse.java index 60f67f4..a8bf33f 100644 --- a/src/action/actNewFichierAnalyse.java +++ b/src/action/actNewFichierAnalyse.java @@ -186,18 +186,20 @@ public class actNewFichierAnalyse extends AbstractAction{ Pattern p = Pattern.compile("^text:p$|^text:h$|^text:span$|^text:list$|^text:list-item$|^text:line-break$|^text:span$|^text:tab$|^text:s$"); //le node qui peuvent rechercher par le contenu textuel ArrayList listTextesInPage = new ArrayList(); for(int i = 0 ; i < nodLaPage.getNodes().size();i++) { - Matcher m = p.matcher(nodLaPage.getNodes().get(i).getNomElt()); - if(m.find()) { - String content = nodLaPage.getNodes().get(i).retourneLesContenusEnfants(""); - if(listTextesInPage.contains(content)) { - nodLaPage.getNodes().get(i).getAttributs().put("isDoublon", "true"); - }else { - nodLaPage.getNodes().get(i).getAttributs().remove("isDoublon"); - listTextesInPage.add(content); + if(nodLaPage.getNodes().get(i)!=null) { + Matcher m = p.matcher(nodLaPage.getNodes().get(i).getNomElt()); + if(m.find()) { + String content = nodLaPage.getNodes().get(i).retourneLesContenusEnfants(""); + if(listTextesInPage.contains(content)) { + nodLaPage.getNodes().get(i).getAttributs().put("isDoublon", "true"); + }else { + nodLaPage.getNodes().get(i).getAttributs().remove("isDoublon"); + listTextesInPage.add(content); + } + } + if(nodLaPage.getNodes().get(i).getNodes().size()>0) { + placeIsDoublon(nodLaPage.getNodes().get(i)); } - } - if(nodLaPage.getNodes().get(i).getNodes().size()>0) { - placeIsDoublon(nodLaPage.getNodes().get(i)); } } }