Minor tweak to value of temporal vis enabled flag in template data model
This commit is contained in:
parent
f8706cc051
commit
f57f236558
1 changed files with 2 additions and 6 deletions
|
@ -548,13 +548,9 @@ public class IndividualController extends FreemarkerHttpServlet {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private Boolean getTemporalVisualizationFlag() {
|
private boolean getTemporalVisualizationFlag() {
|
||||||
String property = ConfigurationProperties.getProperty("visualization.temporal");
|
String property = ConfigurationProperties.getProperty("visualization.temporal");
|
||||||
if ("enabled".equals(property)) {
|
return "enabled".equals(property);
|
||||||
return Boolean.TRUE;
|
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private Model getRDF(Individual entity, OntModel contextModel, Model newModel, int recurseDepth ) {
|
private Model getRDF(Individual entity, OntModel contextModel, Model newModel, int recurseDepth ) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue