fixes some compile errors, related to NIHVIVO-205
This commit is contained in:
parent
5e2b6dde6b
commit
2f21b9c535
1 changed files with 6 additions and 3 deletions
|
@ -45,6 +45,8 @@ public class OntologyUpdater {
|
|||
private OntologyChangeLogger logger;
|
||||
private OntologyChangeRecord record;
|
||||
|
||||
private OntModel OLD_TBOX_MODEL = null; // TODO change this
|
||||
|
||||
public OntologyUpdater(OntologyUpdateSettings settings) {
|
||||
this.settings = settings;
|
||||
this.logger = new SimpleOntologyChangeLogger(settings.getLogFile(),
|
||||
|
@ -68,7 +70,8 @@ public class OntologyUpdater {
|
|||
|
||||
AtomicOntologyChangeLists changes =
|
||||
new AtomicOntologyChangeLists(rawChanges,
|
||||
settings.getOntModelSelector().getTBoxModel());
|
||||
settings.getOntModelSelector().getTBoxModel(),
|
||||
OLD_TBOX_MODEL);
|
||||
|
||||
//updateTBox(changes);
|
||||
//preprocessChanges(changes);
|
||||
|
@ -179,7 +182,7 @@ public class OntologyUpdater {
|
|||
|
||||
public AtomicOntologyChangeLists (
|
||||
List<AtomicOntologyChange> changeList, OntModel newTboxModel,
|
||||
OntModel oldTboxModel) {
|
||||
OntModel oldTboxModel) throws IOException {
|
||||
|
||||
String str = null;
|
||||
Iterator<AtomicOntologyChange> listItr = changeList.iterator();
|
||||
|
|
Loading…
Add table
Reference in a new issue