Skip to content

Commit

Permalink
Fix test wrt new 3.0 default settings
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jun 18, 2024
1 parent d02dd9f commit 9d8747e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,11 @@ public Link deserialize(JsonParser jsonParser, DeserializationContext deserializ

}

private final List<E> entities;
private List<E> entities;

@JsonSerialize(contentUsing = JsonLinkSerializer.class)
@JsonDeserialize(contentUsing = JsonLinkDeserializer.class)
private final List<Link> links;
private List<Link> links;

protected PageImpl() {
this.entities = new ArrayList<>();
Expand Down Expand Up @@ -176,7 +177,6 @@ public Link getLink(String rel) {
}
return null;
}

}

@Path("/point")
Expand Down

0 comments on commit 9d8747e

Please sign in to comment.