Commit 4c95ef10 authored by Tim Olshansky's avatar Tim Olshansky Committed by GitHub

Merge pull request #160 from jclaudiocf/hotfix/message-field-commit

Changed field deprecated
parents e42d54df 5eb8ef6b
......@@ -11,7 +11,7 @@ public class GitlabCommit {
private String id;
private String title;
private String description;
private String message;
@JsonProperty("short_id")
private String shortId;
......@@ -58,12 +58,12 @@ public class GitlabCommit {
this.title = title;
}
public String getDescription() {
return description;
public String getMessage() {
return message;
}
public void setDescription(String description) {
this.description = description;
public void setMessage(String message) {
this.message = message;
}
public String getAuthorName() {
......
Markdown is supported
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