Trivial changes
This commit is contained in:
parent
140fd0eb8b
commit
9ec06f224e
3 changed files with 3 additions and 6 deletions
|
@ -137,11 +137,9 @@ public class OperationUtils{
|
|||
}
|
||||
}
|
||||
} catch (InstantiationException ie){
|
||||
log.error("edu.cornell.mannlib.vitro.edit.utils.OperationUtils.cloneBean("+bean.getClass().toString()+") could not instantiate new instance of bean.");
|
||||
log.error(ie.getStackTrace());
|
||||
log.error("edu.cornell.mannlib.vitro.edit.utils.OperationUtils.cloneBean("+bean.getClass().toString()+") could not instantiate new instance of bean.", ie);
|
||||
} catch (IllegalAccessException iae){
|
||||
log.error("edu.cornell.mannlib.vitro.edit.utils.OperationUtils.cloneBean("+bean.getClass().toString()+") encountered illegal access exception instantiating new bean.");
|
||||
log.error(iae.getStackTrace());
|
||||
log.error("edu.cornell.mannlib.vitro.edit.utils.OperationUtils.cloneBean("+bean.getClass().toString()+") encountered illegal access exception instantiating new bean.", iae);
|
||||
}
|
||||
return newBean;
|
||||
}
|
||||
|
|
|
@ -38,7 +38,6 @@ import edu.cornell.mannlib.vitro.webapp.dao.jena.OntModelSelector;
|
|||
* VitroModelSource.getModel(URL, loadIfAbsent)
|
||||
* VitroModelSource.openModel(name)
|
||||
* VitroModelSource.openModelIfPresent(string)
|
||||
* ServletContext.getAttribute("jenaPersistentOntModel")
|
||||
* ServletContext.getAttribute("pelletOntModel")
|
||||
* VitroJenaModelMaker
|
||||
* VitroJenaSpecialModelMaker
|
||||
|
|
|
@ -84,7 +84,7 @@ public class ContentModelSetup extends JenaDataSourceSetupBase
|
|||
loadDataFromFilesystem(baseABoxModel, baseTBoxModel, applicationMetadataModel, ctx);
|
||||
}
|
||||
|
||||
log.info("Setting up union models");
|
||||
log.info("Setting up full models");
|
||||
OntModel baseFullModel = createCombinedBulkUpdatingModel(baseABoxModel, baseTBoxModel);
|
||||
OntModel inferenceFullModel = createCombinedModel(inferenceABoxModel, inferenceTBoxModel);
|
||||
OntModel unionFullModel = ModelFactory.createOntologyModel(DB_ONT_MODEL_SPEC, dataset.getDefaultModel());
|
||||
|
|
Loading…
Add table
Reference in a new issue