Upgrade to Spring Boot 3.1.4

This commit is contained in:
Ryan Baxter
2023-09-28 15:10:37 +08:00
parent 364e314289
commit e892efb82f
27 changed files with 245 additions and 330 deletions

View File

@@ -45,8 +45,7 @@ public class Event {
* @param label the label associated with the event
*/
@JsonCreator
public Event(@JsonProperty("event") String type,
@JsonProperty("created_at") OffsetDateTime creationTime,
public Event(@JsonProperty("event") String type, @JsonProperty("created_at") OffsetDateTime creationTime,
@JsonProperty("label") Label label) {
this.type = Type.valueFrom(type);
this.creationTime = creationTime;