Skip to content

Commit

Permalink
suppression code inutile
Browse files Browse the repository at this point in the history
  • Loading branch information
julg committed May 21, 2024
1 parent a0909ff commit fa9aa18
Showing 1 changed file with 4 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,21 +187,13 @@ public TheseModel process(TheseModel theseModel) throws Exception {

// Vérifier qu'on ne transforme pas un sujet en NNT, dans ce cas, il faut supprimer IdSujet de nntSet


HashSet<String> idsSujetASupprimer = new HashSet<>();
Iterator<String> iteratorNntSet = nntSet.iterator();
while (iteratorNntSet.hasNext()) {
if (iteratorNntSet.next().equals(theseModel.getIdSujet())) {
idsSujetASupprimer.add(theseModel.getIdSujet());
}
}
for (String s:idsSujetASupprimer) {
nntSet.remove(s);
}
nntSet.remove(theseModel.getIdSujet());

// Ajout de l'id de thèse qu'on indexe
nntSet.add(theseModel.getId());

// @TODO si la thèse est passée en soutenue (et a donc un nnt), faut-il supprimer le sujet pour la personne ?

log.info("4 début traitement");

//Mets mets = marshall.chargerMets(new ByteArrayInputStream(theseModel.getDoc().getBytes()));
Expand Down Expand Up @@ -244,7 +236,7 @@ public TheseModel process(TheseModel theseModel) throws Exception {

dbService.supprimerTheseATraiter(theseModel.getId(), TableIndexationES.indexation_es_personne);

jdbcTemplate.execute("commit");
//jdbcTemplate.execute("commit");


// Rechargement de la BDD vers ES (à faire avec l'afterChunk)
Expand Down

0 comments on commit fa9aa18

Please sign in to comment.