Skip to content

Commit

Permalink
skip json values when using defining ontology curie
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesamcl committed Nov 8, 2024
1 parent c58e873 commit 758b2db
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dataload/linker/src/main/java/LinkerPass2.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ private static void writeEntityArray(JsonReader jsonReader, JsonWriter jsonWrite
if(name == "curie") {
if(curie != null) {
// use the defining ontology curie
jsonReader.skipValue();
jsonWriter.value(curie);
} else {
// fallthrough to using the curie from rdf2json
Expand Down

0 comments on commit 758b2db

Please sign in to comment.