Commit 7bc23e9a authored by Brian Krische's avatar Brian Krische
Browse files

Change position to be Double instead of Integer

parent 3d327e39
...@@ -42,8 +42,8 @@ public class Position { ...@@ -42,8 +42,8 @@ public class Position {
private Integer width; private Integer width;
private Integer height; private Integer height;
private Integer x; private Double x;
private Integer y; private Double y;
public String getBaseSha() { public String getBaseSha() {
return baseSha; return baseSha;
...@@ -175,28 +175,28 @@ public class Position { ...@@ -175,28 +175,28 @@ public class Position {
return (this); return (this);
} }
public Integer getX() { public Double getX() {
return x; return x;
} }
public void setX(Integer x) { public void setX(Double x) {
this.x = x; this.x = x;
} }
public Position withX(Integer x) { public Position withX(Double x) {
this.x = x; this.x = x;
return (this); return (this);
} }
public Integer getY() { public Double getY() {
return y; return y;
} }
public void setY(Integer y) { public void setY(Double y) {
this.y = y; this.y = y;
} }
public Position withY(Integer y) { public Position withY(Double y) {
this.y = y; this.y = y;
return (this); return (this);
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment