Skip to content

Commit

Permalink
Changed Schema to use Integer instead of int for version
Browse files Browse the repository at this point in the history
  • Loading branch information
villat committed Mar 19, 2024
1 parent 3dedb7c commit 2873669
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class Schema {

private String name;
private int version;
private Integer version;

public String getName() {
return name;
Expand All @@ -29,11 +29,11 @@ public void setName(String name) {
this.name = name;
}

public int getVersion() {
public Integer getVersion() {
return version;
}

public void setVersion(int version) {
public void setVersion(Integer version) {
this.version = version;
}
}

0 comments on commit 2873669

Please sign in to comment.