Additional check to avoid empty excerpts
This commit is contained in:
parent
bee3e73f7b
commit
71b9e01059
1 changed files with 6 additions and 0 deletions
|
@ -247,6 +247,9 @@ public class DocumentStructure {
|
|||
if (docPart.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
if (docPart.getBody().isEmpty() && isMaster(element)) {
|
||||
return;
|
||||
}
|
||||
Resource excerpt = createExcerpt(docPart);
|
||||
excerpt.addProperty( RDFS.label, docPart.getName());
|
||||
Property hasText = m.createProperty(TS + "hasText");
|
||||
|
@ -255,6 +258,9 @@ 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