File tree 1 file changed +3
-3
lines changed
OWLTools-Core/src/main/java/owltools/graph
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -917,13 +917,13 @@ public String getIdentifier(IRI iriId) {
917
917
// We then get the object value of this property, which is supposed to be a literal.
918
918
OWLAnnotationValue objValue = oa .getValue ();
919
919
if (objValue .isLiteral () != true ) {
920
- LOG .warn ("Odd. " + objValue + " of oboInOw #id for " + iriId + ", is supposed to be an literal, but it is not." );
920
+ LOG .warn ("Odd. " + objValue + " of oboInOwl #id for " + iriId + ", is supposed to be an literal, but it is not." );
921
921
continue ;
922
922
}
923
923
924
924
Optional <OWLLiteral > literalOpt = objValue .asLiteral ();
925
925
if (literalOpt .isPresent () != true ) {
926
- LOG .warn ("Odd. " + objValue + " of oboInOw #id for " + iriId + ", does not exist." );
926
+ LOG .warn ("Odd. " + objValue + " of oboInOwl #id for " + iriId + ", does not exist." );
927
927
continue ;
928
928
}
929
929
@@ -933,7 +933,7 @@ public String getIdentifier(IRI iriId) {
933
933
}
934
934
935
935
// In the case where the input class does not have oboInOwl#id, we return its original URL.
936
- LOG .warn ("Unable to retrieve the value of oboInOw #id as the identifier for " + iriId + "; we will use an original iri as the identifier." );
936
+ LOG .warn ("Unable to retrieve the value of oboInOwl #id as the identifier for " + iriId + "; we will use an original iri as the identifier." );
937
937
return (String ) SerializationUtils .clone (iriId .toString ());
938
938
}
939
939
You can’t perform that action at this time.
0 commit comments