Skip to content

Commit

Permalink
Suppression des tabulations dans les résumés
Browse files Browse the repository at this point in the history
  • Loading branch information
julg committed Dec 2, 2024
1 parent f38ac1c commit d6e6a04
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ public TheseMappee(Mets mets, List<Set> oaiSets, int idDoc) {
while (abstractIterator.hasNext()) {
Abstract a = abstractIterator.next();
if (!a.getLang().isEmpty())
resumes.put(a.getLang(), a.getContent().replace("\"", "''"));
resumes.put(a.getLang(), a.getContent()
.replace("\"", "''")
.replace("\t", " "));
}
} catch (NullPointerException e) {
log.warn("PB pour resumes de " + nnt + e.getMessage());
Expand Down

0 comments on commit d6e6a04

Please sign in to comment.