Skip to content

Commit

Permalink
Update v3 SummaryDeserializer's UID (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksclarke authored Mar 19, 2021
1 parent 55babeb commit 0857eed
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SummaryDeserializer extends AbstractI18nStdDeserializer<Summary> {
/**
* The <code>serialVersionUID</code> of SummarySerializer.
*/
private static final long serialVersionUID = -1205197258028340974L;
private static final long serialVersionUID = 6825081668840056682L;

/**
* Creates a new summary deserializer.
Expand All @@ -37,8 +37,8 @@ class SummaryDeserializer extends AbstractI18nStdDeserializer<Summary> {
* Deserializes a Summary from its JSON structure.
*/
@Override
public Summary deserialize(final JsonParser aParser, final DeserializationContext aContext) throws IOException,
JsonProcessingException {
public Summary deserialize(final JsonParser aParser, final DeserializationContext aContext)
throws IOException, JsonProcessingException {
return new Summary(getI18nStrings(aParser.getCodec().readTree(aParser)));
}
}

0 comments on commit 0857eed

Please sign in to comment.