Skip to content

Commit

Permalink
fix invalid json
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Dec 12, 2022
1 parent 9d7a7c4 commit be361f7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/org/grobid/core/data/ValueBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,10 @@ public String toJson() {
} else
json.append(", ");
json.append("\"formatted\" : \"" + outputRawName + "\"");

json.append(" }");
}

json.append(" }");

return json.toString();
}

Expand Down

0 comments on commit be361f7

Please sign in to comment.