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

Fix gitlab4j#805 Increase CommitStatus id from Integer to Long

parent 5335c9e2
...@@ -13,7 +13,7 @@ public class CommitStatus { ...@@ -13,7 +13,7 @@ public class CommitStatus {
private Date createdAt; private Date createdAt;
private String description; private String description;
private Date finishedAt; private Date finishedAt;
private Integer id; private Long id;
private String name; private String name;
private String ref; private String ref;
private String sha; private String sha;
...@@ -69,11 +69,11 @@ public class CommitStatus { ...@@ -69,11 +69,11 @@ public class CommitStatus {
this.finishedAt = finishedAt; this.finishedAt = finishedAt;
} }
public Integer getId() { public Long getId() {
return id; return id;
} }
public void setId(Integer id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
......
...@@ -16,6 +16,6 @@ ...@@ -16,6 +16,6 @@
"sha" : "18f3e63d05582537db6d183d9d557be09e1f90c8", "sha" : "18f3e63d05582537db6d183d9d557be09e1f90c8",
"target_url" : "https://gitlab.example.com/thedude/gitlab-ce/builds/91", "target_url" : "https://gitlab.example.com/thedude/gitlab-ce/builds/91",
"finished_at" : "2016-01-19T08:40:25.934Z", "finished_at" : "2016-01-19T08:40:25.934Z",
"id" : 91, "id" : 2148826854,
"ref" : "master" "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