Skip to content

Commit

Permalink
Remove debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Mar 6, 2024
1 parent c964440 commit d122908
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ public List<Document> createDocuments(JCas jCas) throws FieldGenerationException
relDocs = relDocs.stream().filter(d -> !removedDocuments.contains(d)).collect(Collectors.toList());
// remove the temporary field for the UIMA argument objects
relDocs.forEach(d -> d.remove("ARGUMENT_FS"));
relDocs.forEach(relDoc -> { final IFieldValue texts = relDoc.get("argumentcoveredtext");
if ((texts+"").contains("Ptch1"))
System.out.println(relDoc);});
return relDocs;
}

Expand Down

0 comments on commit d122908

Please sign in to comment.