Skip to content

Commit

Permalink
issue-371: revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Lagrimas committed Aug 10, 2023
1 parent 51e7987 commit 611cb4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataload/linker/src/main/java/LinkerPass1.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public static void parseEntity(JsonReader jsonReader, String entityType, String
curie = jsonParser.parse(jsonReader);
} else if(key.equals("type")) {
types = gson.fromJson(jsonReader, Set.class);
} else if(key.equals("http://www.w3.org/2000/01/rdf-schema#isDefinedBy")) {
} else if(key.equals("http://www.w3.org/2000/01/rdf-schema#definedBy")) {
JsonElement jsonDefinedBy = jsonParser.parse(jsonReader);
if(jsonDefinedBy.isJsonArray()) {
JsonArray arr = jsonDefinedBy.getAsJsonArray();
Expand Down

1 comment on commit 611cb4d

@serjoshua
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert fix for #371

Please sign in to comment.