Skip to content

Commit 5518cab

Browse files
authored
Merge pull request #285 from owlcollab/spelling
Fix typo.
2 parents 3c7852e + a3a537e commit 5518cab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

OWLTools-Core/src/main/java/owltools/graph/OWLGraphWrapperExtended.java

+3-3
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)