Remove empty text excerpts

This commit is contained in:
Georgy Litvinov 2020-08-11 14:41:26 +02:00
parent 8f1d716fe0
commit a8730f979e

View file

@ -258,7 +258,7 @@ public class DocumentStructure {
if (docPart.isEmpty()) {
return;
}
if (docPart.getBody().isEmpty() && isMaster(element)) {
if (docPart.getBody().isEmpty()) {
return;
}
Resource excerpt = createExcerpt(docPart);
@ -269,9 +269,6 @@ public class DocumentStructure {
addMetadataProperties(excerpt,docPart.getMetadata());
}
}
private boolean isMaster(Resource element) {
return element.getNameSpace().contains(TS + ELENPHARTICLE);
}
public void createTree() {
createElements();