Skip to content

Commit

Permalink
No longer expect a generated serialVersionUID
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Sep 30, 2024
1 parent 1da3996 commit 631f966
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,6 @@ public void setName(String name) {
@Table(name = "specialties")
public class Specialty implements Serializable {
private static final long serialVersionUID = 1;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
Expand Down Expand Up @@ -362,8 +360,6 @@ public void setLastName(String lastName) {
@Table(name = "vets")
public class Vet implements Serializable {
private static final long serialVersionUID = 1;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
Expand Down

0 comments on commit 631f966

Please sign in to comment.