Skip to content

Commit

Permalink
Merge pull request #132 from abes-esr/develop
Browse files Browse the repository at this point in the history
Suppression des tabulations dans les résumés
  • Loading branch information
julg authored Dec 2, 2024
2 parents bc55774 + d6e6a04 commit f7fb532
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 f7fb532

Please sign in to comment.