File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
OWLTools-Core/src/main/java/owltools/graph Expand file tree Collapse file tree 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) {
917917 // We then get the object value of this property, which is supposed to be a literal.
918918 OWLAnnotationValue objValue = oa .getValue ();
919919 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." );
921921 continue ;
922922 }
923923
924924 Optional <OWLLiteral > literalOpt = objValue .asLiteral ();
925925 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." );
927927 continue ;
928928 }
929929
@@ -933,7 +933,7 @@ public String getIdentifier(IRI iriId) {
933933 }
934934
935935 // 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." );
937937 return (String ) SerializationUtils .clone (iriId .toString ());
938938 }
939939
You can’t perform that action at this time.
0 commit comments