Skip to content

Commit

Permalink
remove checkedby fields when parsing answers
Browse files Browse the repository at this point in the history
  • Loading branch information
vasgat committed Dec 6, 2023
1 parent c4d3c25 commit a8cfb92
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/org/wikirate4j/WikirateCardFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ public static Answer createAnswer(String rawJson) throws IncompatibleCardTypeExc
.metricDesigner(json.getString("metric").split("\\+")[0])
.metricName(json.getString("metric").split("\\+")[1])
.sources(getContentOfArray("sources", json, Source.class))
.checkedBy(getContentOf("checked_by", json, CheckedBy.class))
.id(getContentOf("id", json, Long.class))
.name(getContentOf("name", json, String.class))
.url(getContentOf("url", json, String.class))
Expand Down

0 comments on commit a8cfb92

Please sign in to comment.