Skip to content

Commit

Permalink
Redis manifest creation cannot be final and must have setter
Browse files Browse the repository at this point in the history
  • Loading branch information
wwelling committed Dec 19, 2022
1 parent d841954 commit a91b1df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/java/edu/tamu/iiif/model/RedisManifest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class RedisManifest {

private String json;

private final Long creation;
private Long creation;

public RedisManifest() {
this.creation = new Date().getTime();
Expand Down Expand Up @@ -115,4 +115,8 @@ public Long getCreation() {
return creation;
}

public void setCreation(Long creation) {
this.creation = creation;
}

}

0 comments on commit a91b1df

Please sign in to comment.