Commit e36455d5 authored by Paul Nyheim's avatar Paul Nyheim
Browse files

Fix gitlab4j#805 Increase CommitStatus id from Integer to Long

No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
......@@ -13,7 +13,7 @@ public class CommitStatus {
private Date createdAt;
private String description;
private Date finishedAt;
private Integer id;
private Long id;
private String name;
private String ref;
private String sha;
......@@ -69,11 +69,11 @@ public class CommitStatus {
this.finishedAt = finishedAt;
}
public Integer getId() {
public Long getId() {
return id;
}
public void setId(Integer id) {
public void setId(Long id) {
this.id = id;
}
......
......@@ -16,6 +16,6 @@
"sha" : "18f3e63d05582537db6d183d9d557be09e1f90c8",
"target_url" : "https://gitlab.example.com/thedude/gitlab-ce/builds/91",
"finished_at" : "2016-01-19T08:40:25.934Z",
"id" : 91,
"id" : 2148826854,
"ref" : "master"
}
\ No newline at end of file
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