Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/main/java/org/gitlab4j/api/models/Position.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public String toString() {

private Integer width;
private Integer height;
private Integer x;
private Integer y;
private Double x;
private Double y;

public String getBaseSha() {
return baseSha;
Expand Down Expand Up @@ -175,28 +175,28 @@ public Position withHeight(Integer height) {
return (this);
}

public Integer getX() {
public Double getX() {
return x;
}

public void setX(Integer x) {
public void setX(Double x) {
this.x = x;
}

public Position withX(Integer x) {
public Position withX(Double x) {
this.x = x;
return (this);
}

public Integer getY() {
public Double getY() {
return y;
}

public void setY(Integer y) {
public void setY(Double y) {
this.y = y;
}

public Position withY(Integer y) {
public Position withY(Double y) {
this.y = y;
return (this);
}
Expand Down