Skip to content

Commit

Permalink
Fix warning in anonymous individual handling
Browse files Browse the repository at this point in the history
  • Loading branch information
phillord committed Mar 14, 2024
1 parent 25fa218 commit 9dbe209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/rdf/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ impl<'a, A: ForIRI, AA: ForIndex<A>> OntologyParser<'a, A, AA> {
av: ob.clone().into(),
}
}
[s, Iri(p), Term::BNode(bnodeid)] => {
[_, Iri(p), Term::BNode(bnodeid)] => {
Annotation {
ap: AnnotationProperty(p.clone()),
av: AnonymousIndividual(bnodeid.0.clone()).into(),
Expand Down

0 comments on commit 9dbe209

Please sign in to comment.