bug fix for NIHVIVO-205 ontology upgrade
This commit is contained in:
parent
e751274430
commit
d6452371df
1 changed files with 2 additions and 2 deletions
|
@ -439,7 +439,7 @@ public class ABoxUpdater {
|
|||
public void logChange(Statement statement, boolean add) throws IOException {
|
||||
logger.log( (add ? "Added " : "Removed") + "Statement: subject = " + statement.getSubject().getURI() +
|
||||
" property = " + statement.getPredicate().getURI() +
|
||||
" object = " + (statement.getObject().isLiteral() ? ((Resource)statement.getObject()).getURI()
|
||||
: ((Literal)statement.getObject()).getLexicalForm()));
|
||||
" object = " + (statement.getObject().isLiteral() ? ((Literal)statement.getObject()).getLexicalForm()
|
||||
: ((Resource)statement.getObject()).getURI()));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue