Unverified Commit 57bda9d1 authored by Gautier de Saint Martin Lacaze's avatar Gautier de Saint Martin Lacaze Committed by GitHub
Browse files

Merge pull request #806 from pnyheim/fix-commitstatus-id

Fix gitlab4j#805 Increase CommitStatus id from Integer to Long
parents 5335c9e2 e36455d5
......@@ -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