Remove empty text excerpts
This commit is contained in:
parent
8f1d716fe0
commit
a8730f979e
1 changed files with 1 additions and 4 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue